Skip to content
Snippets Groups Projects
Commit dcbb3f03 authored by Jan Möbius's avatar Jan Möbius
Browse files

Fixed bug with missing updateView

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@6692 383ad7c9-94d9-4d36-a494-682f7c89f535
parent ac17b830
No related branches found
No related tags found
No related merge requests found
......@@ -576,12 +576,14 @@ void CoreWidget::slotCoordSysVisibility(bool _visible){
return;
}
if (_visible) {
if (_visible)
coordSys->show();
}
else {
else
coordSys->hide();
}
for ( unsigned int i = 0 ; i < OpenFlipper::Options::examinerWidgets() ; ++i )
examiner_widgets_[i]->updateGL();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment