Skip to content

Commit

Permalink
turn off background color of header / footer to avoid flickering
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed Aug 28, 2024
1 parent 46c120a commit 4989150
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/vscode/src/lsp/CodeLensMiddleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ import { findTextEditor } from "./vscodeWindowUtils";
type CodeLens = VscodeCodeLens & TabbyCodeLens;

const decorationTypeHeader = window.createTextEditorDecorationType({
backgroundColor: new ThemeColor("merge.incomingHeaderBackground"),
// backgroundColor: new ThemeColor("merge.incomingHeaderBackground"),
isWholeLine: true,
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
});
const decorationTypeFooter = window.createTextEditorDecorationType({
backgroundColor: new ThemeColor("merge.incomingHeaderBackground"),
// backgroundColor: new ThemeColor("merge.incomingHeaderBackground"),
isWholeLine: true,
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
});
Expand Down

0 comments on commit 4989150

Please sign in to comment.