Skip to content
Snippets Groups Projects
Commit 3effe9bc authored by Mike Kremer's avatar Mike Kremer
Browse files

Added mipmapping icon to coordsys context menu

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@9895 383ad7c9-94d9-4d36-a494-682f7c89f535
parent 7b280830
No related branches found
No related tags found
No related merge requests found
...@@ -191,6 +191,7 @@ void CoreWidget::updatePopupMenuCoordsysNode(QMenu* _menu , const int /*_part*/ ...@@ -191,6 +191,7 @@ void CoreWidget::updatePopupMenuCoordsysNode(QMenu* _menu , const int /*_part*/
QAction* mipmapping = renderingOptionsMenu->addAction(tr("Mipmapping")); QAction* mipmapping = renderingOptionsMenu->addAction(tr("Mipmapping"));
mipmapping->setToolTip(tr("Enable Mipmapping")); mipmapping->setToolTip(tr("Enable Mipmapping"));
mipmapping->setCheckable( true ); mipmapping->setCheckable( true );
mipmapping->setIcon( QIcon(OpenFlipper::Options::iconDirStr()+OpenFlipper::Options::dirSeparator()+"mipmapping.png") );
mipmapping->setChecked( PluginFunctions::viewerProperties().mipmapping() ); mipmapping->setChecked( PluginFunctions::viewerProperties().mipmapping() );
connect(mipmapping, SIGNAL(triggered(bool)), this , SLOT( slotLocalChangeMipmapping(bool) ) ); connect(mipmapping, SIGNAL(triggered(bool)), this , SLOT( slotLocalChangeMipmapping(bool) ) );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment