Changeset 235

Show
Ignore:
Timestamp:
02/13/07 01:05:35 (2 years ago)
Author:
Alan Knowles
Message:

fix default colour bug

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/leds/Scintilla.d

    r230 r235  
    19341934        { 
    19351935            //we do the folding assignment. 
    1936             send(SCI_SETPROPERTY,  cast(sptr_t)std.string.toStringz("fold"), cast(sptr_t)std.string.toStringz("0")); 
     1936            send(SCI_SETPROPERTY,  cast(sptr_t)std.string.toStringz("fold"), cast(sptr_t)std.string.toStringz("0")); 
    19371937            send(SCI_SETPROPERTY,  cast(sptr_t)std.string.toStringz("fold.compact"), cast(sptr_t)std.string.toStringz("0")); 
    19381938            send(SCI_SETPROPERTY,  cast(sptr_t)std.string.toStringz("fold.html"), cast(sptr_t)std.string.toStringz("0")); 
     
    19431943            //send(SCI_SETPROPERTY,  cast(sptr_t)std.string.toStringz("fold"), cast(sptr_t)std.string.toStringz("1")); 
    19441944              
    1945             send(SCI_STYLESETFORE, STYLE_DEFAULT, 0xcccccc);        // fore color of folding line. 
     1945            // this is a bit nasty, since it's nicer to have grey as a colour for the 
     1946            // lines for the folding, but setting this, makes the default text colour grey as well. 
     1947            //send(SCI_STYLESETFORE, STYLE_DEFAULT, 0xcccccc);      // fore color of folding line. 
    19461948              
    19471949            send(SCI_SETMARGINWIDTHN,1,0);