diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2005-11-10 21:51:18 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2005-11-10 21:51:18 +0100 |
commit | e52581dc4f87b46e70ac5989b8c4ed86e71ff147 (patch) | |
tree | 8024e40251258c996ceb8f771dca37a67c8b1a81 /src | |
parent | 882f738b7595b01f8b4f6b0fc9303233742a59de (diff) |
increase buttons in Fl_Search_Chooser
Diffstat (limited to 'src')
-rw-r--r-- | src/Fl_Search_Chooser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_Search_Chooser.cxx b/src/Fl_Search_Chooser.cxx index bc77309..62aa7d1 100644 --- a/src/Fl_Search_Chooser.cxx +++ b/src/Fl_Search_Chooser.cxx @@ -90,9 +90,9 @@ Fl_Search_Chooser::Fl_Search_Chooser(const char *title) { Fl_Input *in = new Fl_Input(g->x()+50, g->h()-80, g->w()-80, 20, "Search"); in->callback((Fl_Callback*) input_cb, this); in->when(FL_WHEN_CHANGED); - Fl_Button *cancel_b = new Fl_Button(g->w()-200, g->h()-30, 80, 20, "Cancel"); + Fl_Button *cancel_b = new Fl_Button(g->w()-200, g->h()-30, 80, 25, "Cancel"); cancel_b->callback((Fl_Callback*) cancel_cb, this); - Fl_Button *ok_b = new Fl_Button(g->w()-100, g->h()-30, 80, 20, "Ok"); + Fl_Button *ok_b = new Fl_Button(g->w()-100, g->h()-30, 80, 25, "Ok"); ok_b->callback((Fl_Callback*) ok_cb, this); Fl::focus(in); g->end(); |