From: Flavio Tordini Date: Fri, 14 Aug 2009 10:07:05 +0000 (+0200) Subject: QAction must be checkable X-Git-Tag: 0.6~56 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a7c31aaa0b8184ab11297a31521ef8c705a43d55;p=minitube QAction must be checkable --- diff --git a/src/thlibrary/thblackbar.cpp b/src/thlibrary/thblackbar.cpp index d2bbc65..05522ad 100644 --- a/src/thlibrary/thblackbar.cpp +++ b/src/thlibrary/thblackbar.cpp @@ -43,6 +43,7 @@ QAction *THBlackBar::addAction (QAction *action) { QAction *THBlackBar::addAction (const QString& text) { QAction *action = new QAction(text, this); + action->setCheckable(true); d->actionList.append(action); return(action); }