Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
ef42249f
Commit
ef42249f
authored
Apr 25, 2017
by
Christopher Tenter
Browse files
add show render objects action in menu bar
parent
8b1648d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
widgets/coreWidget/MenuBar.cc
View file @
ef42249f
...
...
@@ -816,6 +816,13 @@ void CoreWidget::slotUpdateRendererMenu() {
// Remove old data
rendererMenu_
->
clear
();
// Add render objects action
QAction
*
showRendererObjectWidget
=
new
QAction
(
tr
(
"Show render objects"
),
this
);
connect
(
showRendererObjectWidget
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
slotShowRenderObjectWidget
()));
rendererMenu_
->
addAction
(
showRendererObjectWidget
);
rendererMenu_
->
addSeparator
();
// Add all new actions from the group to the menu
rendererMenu_
->
addActions
(
rendererGroup_
->
actions
()
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment