Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
3abfed4f
Commit
3abfed4f
authored
Apr 13, 2012
by
Sebastian Eichelbaum
Browse files
[CHANGE] - the network editor is now active when first starting OW
parent
7175d940
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
src/qt4gui/qt4/WMainWindow.cpp
src/qt4gui/qt4/WMainWindow.cpp
+8
-1
No files found.
src/qt4gui/qt4/WMainWindow.cpp
View file @
3abfed4f
...
...
@@ -247,7 +247,14 @@ void WMainWindow::setupGUI()
addDockWidget
(
Qt
::
RightDockWidgetArea
,
m_controlPanel
);
// by default, the module editor should be in front
m_controlPanel
->
getModuleDock
()
->
raise
();
if
(
m_networkEditor
)
{
m_networkEditor
->
raise
();
}
else
{
m_controlPanel
->
getModuleDock
()
->
raise
();
}
// NOTE: we abuse the gl widgets first frame event to handle startup news.
connect
(
m_mainGLWidget
.
get
(),
SIGNAL
(
renderedFirstFrame
()
),
this
,
SLOT
(
handleStartMessages
()
)
);
...
...
Write
Preview
Markdown
is supported
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