Smaller font and blue selection color in menus.

This commit is contained in:
Bill Spitzak
2000-09-19 08:07:42 +00:00
parent 4524238a4c
commit 9bf56e5cbc

4
main.C
View File

@ -366,6 +366,10 @@ int main(int argc, char** argv) {
" -cfg color\t\tCursor color\n"
" -cbg color\t\tCursor outline color"
);
#ifndef FL_NORMAL_SIZE // detect new versions of fltk where this is a variable
FL_NORMAL_SIZE = 12;
#endif
Fl::set_color(FL_SELECTION_COLOR,0,0,128);
Root = new Fl_Root();
Root->show(argc,argv); // fools fltk into using -geometry to set the size
XSetErrorHandler(xerror_handler);