From 4308e2994c931c1a52b8112ae654747f750d7074 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 11 Mar 2005 09:21:56 +0000
Subject: [PATCH] put return on reset, not cancel

---
 Fltk/GUI.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Fltk/GUI.cpp b/Fltk/GUI.cpp
index 9e388e9347..135dbcbf38 100644
--- a/Fltk/GUI.cpp
+++ b/Fltk/GUI.cpp
@@ -1,4 +1,4 @@
-// $Id: GUI.cpp,v 1.422 2005-03-11 08:56:38 geuzaine Exp $
+// $Id: GUI.cpp,v 1.423 2005-03-11 09:21:56 geuzaine Exp $
 //
 // Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
 //
@@ -3825,11 +3825,11 @@ void GUI::create_manip_window()
   }
 
   {
-    Fl_Button *o = new Fl_Button(width - 2 * BB - 2 * WB, height - BH - WB, BB, BH, "Reset");
+    Fl_Return_Button *o = new Fl_Return_Button(width - 2 * BB - 2 * WB, height - BH - WB, BB, BH, "Reset");
     o->callback(status_xyz1p_cb, (void *)6);
   }
   {
-    Fl_Return_Button *o = new Fl_Return_Button(width - BB - WB, height - BH - WB, BB, BH, "Cancel");
+    Fl_Button *o = new Fl_Button(width - BB - WB, height - BH - WB, BB, BH, "Cancel");
     o->callback(cancel_cb, (void *)manip_window);
   }
 
-- 
GitLab