Skip to content
Snippets Groups Projects
Commit 094856f0 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

alt+t now modifies only visible views

parent a8df90ee
No related branches found
No related tags found
No related merge requests found
// $Id: GUI.cpp,v 1.88 2001-07-17 07:00:37 geuzaine Exp $ // $Id: GUI.cpp,v 1.89 2001-07-26 08:27:08 geuzaine Exp $
// To make the interface as visually consistent as possible, please: // To make the interface as visually consistent as possible, please:
// - use the BH, BW, WB, IW values for button heights/widths, window borders, etc. // - use the BH, BW, WB, IW values for button heights/widths, window borders, etc.
...@@ -437,11 +437,13 @@ int GUI::global_shortcuts(int event){ ...@@ -437,11 +437,13 @@ int GUI::global_shortcuts(int event){
} }
else if(Fl::test_shortcut(FL_ALT+'t')){ else if(Fl::test_shortcut(FL_ALT+'t')){
for(i=0 ; i<List_Nbr(Post_ViewList) ; i++){ for(i=0 ; i<List_Nbr(Post_ViewList) ; i++){
j = (int)opt_view_intervals_type(i, GMSH_GET, 0); if(opt_view_visible(i,GMSH_GET,0)){
opt_view_intervals_type(i, GMSH_SET|GMSH_GUI, j = (int)opt_view_intervals_type(i, GMSH_GET, 0);
(j == DRAW_POST_ISO) ? DRAW_POST_DISCRETE : opt_view_intervals_type(i, GMSH_SET|GMSH_GUI,
(j == DRAW_POST_DISCRETE) ? DRAW_POST_CONTINUOUS : (j == DRAW_POST_ISO) ? DRAW_POST_DISCRETE :
DRAW_POST_ISO); (j == DRAW_POST_DISCRETE) ? DRAW_POST_CONTINUOUS :
DRAW_POST_ISO);
}
} }
redraw_opengl(); redraw_opengl();
return 1; return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment