mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 03:24:49 +00:00
Fixe: Updated the timing of setting text translation for the “Show label under icon” action in the toolbar to set the text after retranslateUi. (#2806)
This commit is contained in:
parent
d188510e59
commit
111ff2bedd
1 changed files with 1 additions and 2 deletions
|
@ -106,8 +106,6 @@ public:
|
|||
|
||||
toggleLabelsAct = new QAction(MainWindow);
|
||||
toggleLabelsAct->setObjectName("toggleLabelsAct");
|
||||
toggleLabelsAct->setText(
|
||||
QCoreApplication::translate("MainWindow", "Show Labels Under Icons"));
|
||||
toggleLabelsAct->setCheckable(true);
|
||||
toggleLabelsAct->setChecked(Config::getShowLabelsUnderIcons());
|
||||
|
||||
|
@ -413,6 +411,7 @@ public:
|
|||
setThemeTokyoNight->setText("Tokyo Night");
|
||||
setThemeOled->setText("OLED");
|
||||
toolBar->setWindowTitle(QCoreApplication::translate("MainWindow", "toolBar", nullptr));
|
||||
toggleLabelsAct->setText(QCoreApplication::translate("MainWindow", "Show Labels Under Icons"));
|
||||
} // retranslateUi
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue