diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2015-02-26 17:52:05 +1100 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2015-02-26 17:52:05 +1100 |
commit | 406dcec19eb2e6814706a83d068a41898a88f713 (patch) | |
tree | b4a50c9648ba3163b36830eb00c22a366ae0383e | |
parent | fa52361dc96d4037898ba704e13be1461540c948 (diff) | |
download | scintilla-mirror-406dcec19eb2e6814706a83d068a41898a88f713.tar.gz |
Changed selection appearance to lighter as that leaves the text more readable on 10.10.
-rw-r--r-- | cocoa/PlatCocoa.mm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index 1379b661d..7645fdd65 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -1619,6 +1619,7 @@ void ListBoxImpl::Create(Window& /*parent*/, int /*ctrlID*/, Scintilla::Point pt [table setTarget:ds]; [table setDoubleAction:@selector(doubleClick:)]; + table.selectionHighlightStyle = NSTableViewSelectionHighlightStyleSourceList; wid = winLB; } |