1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 20:44:15 +00:00

Should fix toolbar toggling on mac

This commit is contained in:
Christophe Dumez 2010-07-21 23:59:09 +00:00
parent 1ed565d8e5
commit 52f25c44eb

View File

@ -645,13 +645,12 @@ bool GUI::event(QEvent * e) {
#ifdef Q_WS_MAC
case QEvent::ToolBarChange: {
qDebug("MAC: Received a toolbar change event!")
e->accept();
bool ret = QMainWindow::event(e);
const bool is_visible = toolBar->isVisible();
qDebug("MAC: new toolbar visibility is %d", (int)is_visible);
actionTop_tool_bar->setChecked(is_visible);
Preferences::setToolbarDisplayed(is_visible);
return true;
break;
return ret;
}
#endif
default: