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
Marco Bubke
flatpak-qt-creator
Commits
4f370af4
Commit
4f370af4
authored
Dec 11, 2008
by
con
Browse files
Fixes: - Avoid ugly toolbar by default on mac
parent
e76d7a5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/navigationwidget.cpp
View file @
4f370af4
...
...
@@ -334,6 +334,10 @@ NavigationSubWidget::NavigationSubWidget(NavigationWidget *parentWidget)
m_navigationComboBox
=
new
NavComboBox
(
this
);
m_navigationWidget
=
0
;
#ifdef Q_OS_MAC
// this is to avoid ugly tool bar behavior
m_navigationComboBox
->
setMaximumWidth
(
130
);
#endif
m_toolbar
=
new
QToolBar
(
this
);
m_toolbar
->
setContentsMargins
(
0
,
0
,
0
,
0
);
...
...
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