mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
Do not use QTabBar::setDocumentMode() on OS X.
This commit is contained in:
parent
7205917562
commit
cbc45c772f
@ -179,7 +179,9 @@ MainWindow::MainWindow() :
|
||||
m_modeStack->setIconSize(QSize(24,24));
|
||||
m_modeStack->setTabPosition(QTabWidget::South);
|
||||
m_modeStack->setMovable(false);
|
||||
#ifndef Q_WS_MAC
|
||||
m_modeStack->setDocumentMode(true);
|
||||
#endif
|
||||
m_modeManager = new ModeManager(this, m_modeStack);
|
||||
|
||||
m_connectionManager = new ConnectionManager(this, m_modeStack);
|
||||
|
Loading…
Reference in New Issue
Block a user