KomodoEdit icon indicating copy to clipboard operation
KomodoEdit copied to clipboard

Vertical scrollbar handle too thin for large files - and how to fix

Open stefman2 opened this issue 5 years ago • 2 comments

The vertical scrollbar handle gets thinner and thinner as your file grows (Komodo IDE 12.0.1 Mac OS 10.11), to the extent that, with files containing several thousand lines of code, the handle is so thin that one can't drag it at all

One can fix this issue (and also, if necessary, the related issue that, in some "dark" color schemes, the handle is black against a charcoal background and therefore almost impossible to see in the first place) with some custom CSS as follows -- based on Defman21's fix for the color issue #1802:

Go to Tools->Color Scheme Editor and select "Interface" at the top of the left-hand column (instead of the default "Editor". In the right-hand box add the following CSS, or similar:

scrollbar thumb { background: #ff0000 !important; min-height:30px; }

When you press "Apply" make sure you check the "Interface" box as well or it won't be implemented.

Stefan

stefman2 avatar Oct 30 '20 15:10 stefman2

Thanks for report @stefman2.

th3coop avatar Nov 09 '20 18:11 th3coop

I should comment that the CSS suggested above also effects the vertical height and color of the horizontal scrollbar handle, so the 30px in the example I gave is a little too large, and the bright red color is distracting. The following version of the CSS makes the entire view a lot more comfortable

scrollbar thumb { background: #0088bb !important; min-height:20px; }

stefman2 avatar Nov 10 '20 13:11 stefman2