Fixed Return button problem in fl_ask and friends (too much optimization

in previous commit).


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7370 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2010-03-30 19:44:50 +00:00
parent b2a7c3df5e
commit 4b3360a6a7

View File

@ -96,7 +96,10 @@ static Fl_Window *makeform() {
}
// create the buttons (right to left)
for (int b=0, x=310; b<3; b++, x -= 100) {
button[b] = new Fl_Button(x, 70, 90, 23);
if (b==1)
button[b] = new Fl_Return_Button(x, 70, 90, 23);
else
button[b] = new Fl_Button(x, 70, 90, 23);
button[b]->align(FL_ALIGN_INSIDE|FL_ALIGN_WRAP);
button[b]->callback(button_cb,(void *)b);
}