Skip to content

Commit

Permalink
Debugger: Fix Open Debugger option to not toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechnician27 authored and refractionpcsx2 committed Jul 12, 2024
1 parent 2e0039e commit 6092918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2-qt/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2572,7 +2572,7 @@ DebuggerWindow* MainWindow::getDebuggerWindow()
void MainWindow::openDebugger()
{
DebuggerWindow* dwnd = getDebuggerWindow();
dwnd->isVisible() ? dwnd->hide() : dwnd->show();
dwnd->isVisible() ? dwnd->activateWindow() : dwnd->show();
}

void MainWindow::doControllerSettings(ControllerSettingsWindow::Category category)
Expand Down

0 comments on commit 6092918

Please sign in to comment.