Code::Blocks Forums

User forums => Help => Topic started by: eoneuk on July 26, 2005, 04:02:55 pm

Title: Editor Background Color
Post by: eoneuk on July 26, 2005, 04:02:55 pm
In RC1 it appears we have lost the ability to select the entire background color of the editor;  or perhaps I am missing something.  Any help will be appreciated.
Title: Re: Editor Background Color
Post by: mandrav on July 26, 2005, 07:01:11 pm
In RC1 it appears we have lost the ability to select the entire background color of the editor;  or perhaps I am missing something.  Any help will be appreciated.

Yes, unfortunately it seems so...
But I guess it 'll be fixed and a minor update package will be released containing fixes for this as well as a few other minor annoyances.

Yiannis.
Title: Re: Editor Background Color
Post by: mandrav on July 26, 2005, 07:57:39 pm
Btw, for those compiling C::B themselves, the fix for the editor background color is trivial (I can't believe I missed it):

Change editorcolorset.cpp, line 324 from
Code
            if (i < 32 || i > 39)

to
Code
            if (i < 33 || i > 39)

Yiannis.