diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-08-24 20:50:16 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-08-24 20:50:16 +0000 |
| commit | b5e909024fb6f86d63d26dbe86a29b60bd092622 (patch) | |
| tree | e55382857ef6f833d413a2038842839463c563a8 | |
| parent | 5486cc9dabfe51e2d6b98e8c4acb3e8f518ff58b (diff) | |
| download | qmmp-b5e909024fb6f86d63d26dbe86a29b60bd092622.tar.gz qmmp-b5e909024fb6f86d63d26dbe86a29b60bd092622.tar.bz2 qmmp-b5e909024fb6f86d63d26dbe86a29b60bd092622.zip | |
qsui: fixed toolbar renaming
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@10247 90c681e8-e032-0410-971d-27865f9a5e38
| -rw-r--r-- | src/plugins/Ui/qsui/actionmanager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/Ui/qsui/actionmanager.cpp b/src/plugins/Ui/qsui/actionmanager.cpp index bedccf3b5..4037ca7a7 100644 --- a/src/plugins/Ui/qsui/actionmanager.cpp +++ b/src/plugins/Ui/qsui/actionmanager.cpp @@ -290,6 +290,7 @@ void ActionManager::updateToolBar(QToolBar *toolBar, const ToolBarInfo &info) { toolBar->clear(); toolBar->setIconSize(info.iconSize); + toolBar->setWindowTitle(info.title); for(const QString &name : qAsConst(info.actionNames)) { if(name == "separator") |
