diff options
author | corvid <corvid@lavabit.com> | 2012-12-30 06:32:48 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2012-12-30 06:32:48 +0000 |
commit | 177b1be2bf684bd82ee9efb88073095877736647 (patch) | |
tree | 8d6143eb3494cf8b336c4643d7561dcddd64669b /src | |
parent | aaab52c26db7ab85b263820947232d7eff8eebb3 (diff) |
main background color for status output
...instead of the text background that it would use of its own accord. I'm
not 100% certain about the decision, but the fact that you can't type into
it makes it seem qualitatively different.
Diffstat (limited to 'src')
-rw-r--r-- | src/ui.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -622,7 +622,7 @@ void UI::make_status_bar(int ww, int wh) StatusOutput->labelsize(8); StatusOutput->box(FL_THIN_DOWN_BOX); StatusOutput->clear_visible_focus(); - StatusOutput->color(FL_GRAY_RAMP + 18); + StatusOutput->color(FL_BACKGROUND_COLOR); // Bug Meter BugMeter = new CustButton(ww-bm_w,wh-sh,bm_w,sh); |