summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2018-10-23 16:27:58 +0200
committerKatarina Behrens <Katarina.Behrens@cib.de>2018-10-24 09:58:52 +0200
commitb439cfda24676c5272e3fe30c0a521975f948274 (patch)
tree6eb6777fdb1c337e01d916b27358f58914d6465f
parent87c06415cebd707ae359cb2f1b06d468cb6afb08 (diff)
tdf#120450: Radiobuttons want to be checked too
Change-Id: If9b67bf866ed9fe38f69d440deeb2eccb87301bc Reviewed-on: https://gerrit.libreoffice.org/62237 Tested-by: Jenkins Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r--vcl/qt5/Qt5Menu.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/qt5/Qt5Menu.cxx b/vcl/qt5/Qt5Menu.cxx
index 9bbf86be6688..e23c29a5e379 100644
--- a/vcl/qt5/Qt5Menu.cxx
+++ b/vcl/qt5/Qt5Menu.cxx
@@ -132,6 +132,7 @@ void Qt5Menu::DoFullMenuUpdate(Menu* pMenuBar, QMenu* pParentMenu)
pQAG->setExclusive(true);
}
pQAG->addAction(pAction);
+ pAction->setChecked(bChecked);
}
pAction->setEnabled(pSalMenuItem->mbEnabled);