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

fix warning

parent 6fcdff16
No related branches found
No related merge requests found
......@@ -33,7 +33,7 @@ static void view_toggle_cb(Fl_Widget *w, void *data)
viewButton *but = FlGui::instance()->onelab->getViewButton(num);
if(but){
if(Fl::event_state(FL_SHIFT)){
for(int i = 0; i < PView::list.size(); i++){
for(unsigned int i = 0; i < PView::list.size(); i++){
if(i != num) opt_view_visible(i, GMSH_SET | GMSH_GUI, 0);
else opt_view_visible(i, GMSH_SET | GMSH_GUI, 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