diff options
author | dynaflash <[email protected]> | 2008-03-06 15:04:31 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2008-03-06 15:04:31 +0000 |
commit | 4e3cd7cbe7ef4caabc1e324d5fb27848a73b7e80 (patch) | |
tree | 0eb0a16ec199d6521db16d6eb419be9c637f8638 | |
parent | 5c1ba114dd3c868c4f9f3a5be5395387acc72692 (diff) |
MacGui: Presets - change the cursor highlighted color of the preset name to black, so when changing the name, you can see the letters. The old white made it almost impossible.... duh!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1331 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 5ff4fe7d4..e81e89712 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -3264,7 +3264,7 @@ if (item == nil) if ([fPresetsOutlineView selectedRow] == [fPresetsOutlineView rowForItem:item]) { - fontColor = [NSColor whiteColor]; + fontColor = [NSColor blackColor]; shadowColor = [NSColor colorWithDeviceRed:(127.0/255.0) green:(140.0/255.0) blue:(160.0/255.0) alpha:1.0]; } else |