mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
[Qt] Don't slack on translations
This commit is contained in:
parent
fbfea624cb
commit
84044d078e
1 changed files with 3 additions and 3 deletions
|
@ -17,9 +17,9 @@ MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent)
|
||||||
// Set up theme selection
|
// Set up theme selection
|
||||||
setTheme(Theme::Dark);
|
setTheme(Theme::Dark);
|
||||||
themeSelect = new QComboBox(this);
|
themeSelect = new QComboBox(this);
|
||||||
themeSelect->addItem("System");
|
themeSelect->addItem(tr("System"));
|
||||||
themeSelect->addItem("Light");
|
themeSelect->addItem(tr("Light"));
|
||||||
themeSelect->addItem("Dark");
|
themeSelect->addItem(tr("Dark"));
|
||||||
themeSelect->setCurrentIndex(static_cast<int>(currentTheme));
|
themeSelect->setCurrentIndex(static_cast<int>(currentTheme));
|
||||||
|
|
||||||
themeSelect->setGeometry(40, 40, 100, 50);
|
themeSelect->setGeometry(40, 40, 100, 50);
|
||||||
|
|
Loading…
Add table
Reference in a new issue