Skip to content

Commit

Permalink
[Qt] Preparations before making the Qt builds public
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat authored Dec 13, 2023
1 parent c3cd6ac commit 79079f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/panda_qt/main_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent)
auto aboutMenu = menuBar->addMenu(tr("About"));

// Create and bind actions for them
auto pandaAction = fileMenu->addAction(tr("panda..."));
auto pandaAction = fileMenu->addAction(tr("Load game"));
connect(pandaAction, &QAction::triggered, this, &MainWindow::selectROM);

auto pauseAction = emulationMenu->addAction(tr("Pause"));
Expand Down Expand Up @@ -341,4 +341,4 @@ void MainWindow::keyReleaseEvent(QKeyEvent* event) {
case Qt::Key_Return: releaseKey(HID::Keys::Start); break;
case Qt::Key_Backspace: releaseKey(HID::Keys::Select); break;
}
}
}

0 comments on commit 79079f3

Please sign in to comment.