From 034c09a2c059b36367d2733ec42f4e31dabe68ed Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Tue, 31 Jul 2001 07:51:42 +0000 Subject: [PATCH] disable 2nd order elements in GUI --- Fltk/GUI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Fltk/GUI.cpp b/Fltk/GUI.cpp index b4105c02ef..c7d65d6e54 100644 --- a/Fltk/GUI.cpp +++ b/Fltk/GUI.cpp @@ -1,4 +1,4 @@ -// $Id: GUI.cpp,v 1.93 2001-07-30 18:34:26 geuzaine Exp $ +// $Id: GUI.cpp,v 1.94 2001-07-31 07:51:42 geuzaine Exp $ // To make the interface as visually consistent as possible, please: // - use the BH, BW, WB, IW values for button heights/widths, window borders, etc. @@ -1206,6 +1206,7 @@ void GUI::create_mesh_options_window(){ o->labelsize(CTX.fontsize); o->hide(); mesh_butt[0] = new Fl_Check_Button(2*WB, 2*WB+1*BH, BW, BH, "Second order elements"); + mesh_butt[0]->deactivate();//2nd order elements do not work. Disable the graphical option. mesh_butt[1] = new Fl_Check_Button(2*WB, 2*WB+2*BH, BW, BH, "Interactive"); mesh_butt[2] = new Fl_Check_Button(2*WB, 2*WB+3*BH, BW, BH, "Anisotropic"); mesh_butt[3] = new Fl_Check_Button(2*WB, 2*WB+4*BH, BW, BH, "Constrained background mesh"); -- GitLab