Author: rmottola
Date: Fri Aug 28 23:32:25 2015
New Revision: 38941

URL: http://svn.gna.org/viewcvs/gnustep?rev=38941&view=rev
Log:
make defaults more sensible, since otherwise with syntax highlighting where the 
foreground can't be changed (yet) text was unreadable

Modified:
    apps/projectcenter/trunk/Modules/Preferences/EditorFSC/PCEditorFSCPrefs.m

Modified: 
apps/projectcenter/trunk/Modules/Preferences/EditorFSC/PCEditorFSCPrefs.m
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/projectcenter/trunk/Modules/Preferences/EditorFSC/PCEditorFSCPrefs.m?rev=38941&r1=38940&r2=38941&view=diff
==============================================================================
--- apps/projectcenter/trunk/Modules/Preferences/EditorFSC/PCEditorFSCPrefs.m   
(original)
+++ apps/projectcenter/trunk/Modules/Preferences/EditorFSC/PCEditorFSCPrefs.m   
Fri Aug 28 23:32:25 2015
@@ -187,10 +187,10 @@
   [editorColumnsField setStringValue:val];
 
   // Colors
-  currentForegroundColor = [prefs colorForKey:EditorForegroundColor 
defaultValue:[NSColor whiteColor]];
+  currentForegroundColor = [prefs colorForKey:EditorForegroundColor 
defaultValue:[NSColor blackColor]];
   [foregroundColorWell setColor:currentForegroundColor];
 
-  currentBackgroundColor = [prefs colorForKey:EditorBackgroundColor 
defaultValue:[NSColor blackColor]];
+  currentBackgroundColor = [prefs colorForKey:EditorBackgroundColor 
defaultValue:[NSColor colorWithCalibratedWhite:0.9 alpha:0]];
   [backgroundColorWell setColor:currentBackgroundColor];
 
   currentSelectionColor = [prefs colorForKey:EditorSelectionColor 
defaultValue:[NSColor darkGrayColor]];


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to