andreikop / enki

A text editor for programmers
http://enki-editor.org
GNU General Public License v2.0
161 stars 39 forks source link

Locator colors #399

Closed bjones1 closed 8 years ago

bjones1 commented 8 years ago

I find the color used to highlight a locator entry on Windows is hard to read:

image

Would you mind picking a darker color for the font itself?

andreikop commented 8 years ago

How does regular item list (i.e. File Browser) look on Windows? Probably, html item delegate causes problems. Try to make this list look like FileBrowser by using QPalette but not by hardcoding colors

bjones1 commented 8 years ago

Here's the file browser:

image

which looks fine to me. I think changing the highlighted text color to black should work.

andreikop commented 8 years ago

Yes. But do not write black. Try to write something like palette().color(QPalette.HighlightedText) (Not sure, which constant to use)

bjones1 commented 8 years ago

Sounds good. I'll let you know as I make progress.