Skip to content

Commit

Permalink
[Qt] Don't slack on translations
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat committed Oct 1, 2023
1 parent fbfea62 commit 84044d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/panda_qt/main_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent)
// Set up theme selection
setTheme(Theme::Dark);
themeSelect = new QComboBox(this);
themeSelect->addItem("System");
themeSelect->addItem("Light");
themeSelect->addItem("Dark");
themeSelect->addItem(tr("System"));
themeSelect->addItem(tr("Light"));
themeSelect->addItem(tr("Dark"));
themeSelect->setCurrentIndex(static_cast<int>(currentTheme));

themeSelect->setGeometry(40, 40, 100, 50);
Expand Down

0 comments on commit 84044d0

Please sign in to comment.