Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Fix over-repaint issue when typing #3767

Merged
merged 3 commits into from
May 10, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/styles/brackets_codemirror_override.less
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,12 @@

.CodeMirror-gutters {
background-color: @background-color-3;
border-right: none;

/*
Maintain line gutter border-right to avoid repaint performance issues
See https://github.com/marijnh/CodeMirror/issues/1514
*/
border-color: @background-color-3;
}
.CodeMirror-linenumber {
color: @accent-comment;
Expand Down