diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2005-11-10 20:57:26 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2005-11-10 20:57:26 +0100 |
commit | 5d71671094774d9d35e98bfb6655a45e8fdc5ffd (patch) | |
tree | 321a2c54a5ca6c580900ab7458c90dcda809ba6e | |
parent | 189a55db609cb11f64bba4a5567afa37e65c396b (diff) |
increase button size
-rw-r--r-- | src/gipfel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gipfel.cxx b/src/gipfel.cxx index 7bec5c6..b5ff265 100644 --- a/src/gipfel.cxx +++ b/src/gipfel.cxx @@ -292,10 +292,10 @@ create_control_window() { i_view_height->callback((Fl_Callback*)view_height_cb); // Buttons - Fl_Button *b = new Fl_Button(240, 210, 50, 15, "comp"); + Fl_Button *b = new Fl_Button(240, 210, 60, 20, "comp"); b->color(FL_RED); b->callback(comp_cb); - Fl_Button *b1 = new Fl_Button(320, 210, 50, 15, "guess"); + Fl_Button *b1 = new Fl_Button(320, 210, 60, 20, "guess"); b1->callback(guess_cb); b1->color(FL_GREEN); |