Author Topic: Editor Background Color  (Read 5712 times)

Offline eoneuk

  • Multiple posting newcomer
  • *
  • Posts: 18
    • http://
Editor Background Color
« 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.

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: Editor Background Color
« Reply #1 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.
Be patient!
This bug will be fixed soon...

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: Editor Background Color
« Reply #2 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.
Be patient!
This bug will be fixed soon...