Skip to content
Snippets Groups Projects
Commit 0c048cec authored by stefan's avatar stefan
Browse files

Fix bug in SceneWin ContextMenu

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2032 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent 35015203
Branches
Tags
No related merge requests found
......@@ -68,10 +68,10 @@ ContextMenu::ContextMenu(QTreeView* view, SceneWinModel* model):
action = new QAction("Show",this);
connect(action, SIGNAL(triggered()), SceneSelection::Instance(), SLOT(Show()));
this->AddAction(action, NOT_VISIBLE);
this->AddAction(action, GFX_OBJECT|NOT_VISIBLE);
action = new QAction("Hide",this);
connect(action, SIGNAL(triggered()), SceneSelection::Instance(), SLOT(Hide()));
this->AddAction(action, NOT_HIDDEN);
this->AddAction(action, GFX_OBJECT|NOT_HIDDEN);
action = new QAction("Show",this);
connect(action, SIGNAL(triggered()), SceneSelection::Instance(), SLOT(MakeVisible()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment