mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 20:44:15 +00:00
Mac toolbar toggling improvement (Mirco Chinelli)
This commit is contained in:
parent
52f25c44eb
commit
e83f9245a9
10
src/GUI.cpp
10
src/GUI.cpp
@ -644,12 +644,12 @@ bool GUI::event(QEvent * e) {
|
|||||||
}
|
}
|
||||||
#ifdef Q_WS_MAC
|
#ifdef Q_WS_MAC
|
||||||
case QEvent::ToolBarChange: {
|
case QEvent::ToolBarChange: {
|
||||||
qDebug("MAC: Received a toolbar change event!")
|
qDebug("MAC: Received a toolbar change event!");
|
||||||
bool ret = QMainWindow::event(e);
|
bool ret = QMainWindow::event(e);
|
||||||
const bool is_visible = toolBar->isVisible();
|
|
||||||
qDebug("MAC: new toolbar visibility is %d", (int)is_visible);
|
qDebug("MAC: new toolbar visibility is %d", !actionTop_tool_bar->isChecked());
|
||||||
actionTop_tool_bar->setChecked(is_visible);
|
actionTop_tool_bar->toggle();
|
||||||
Preferences::setToolbarDisplayed(is_visible);
|
Preferences::setToolbarDisplayed(actionTop_tool_bar->isChecked());
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user