From: Martin T. H. Sandsmark Date: Tue, 1 Mar 2016 21:52:08 +0000 (+0100) Subject: Remove default keybinding for showing/hiding menubar X-Git-Tag: travis-deploy-test~462 X-Git-Url: https://git.quassel-irc.org/?a=commitdiff_plain;h=60ba221ec89296f4b66cbbab8b8d70673b92085a;p=quassel.git Remove default keybinding for showing/hiding menubar Resolves GH-191. --- diff --git a/src/qtui/mainwin.cpp b/src/qtui/mainwin.cpp index f1eefc54..37921675 100644 --- a/src/qtui/mainwin.cpp +++ b/src/qtui/mainwin.cpp @@ -406,7 +406,7 @@ void MainWin::setupActions() coll->addAction("ShowAwayLog", new Action(tr("Show Away Log"), coll, this, SLOT(showAwayLog()))); coll->addAction("ToggleMenuBar", new Action(QIcon::fromTheme("show-menu"), tr("Show &Menubar"), coll, - 0, 0, QKeySequence(Qt::CTRL + Qt::Key_M)))->setCheckable(true); + 0, 0))->setCheckable(true); coll->addAction("ToggleStatusBar", new Action(tr("Show Status &Bar"), coll, 0, 0))->setCheckable(true);