From 4b3360a6a741fcebaebcc3ac461586003d20d162 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Tue, 30 Mar 2010 19:44:50 +0000 Subject: 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 --- src/fl_ask.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx index 88722b068..791f7a173 100644 --- a/src/fl_ask.cxx +++ b/src/fl_ask.cxx @@ -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); } -- cgit v1.2.3