summaryrefslogtreecommitdiff
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 05709fcb0..513da8001 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -248,6 +248,7 @@ void GMainWindow::ConnectMenuEvents() {
248 &GMainWindow::OnMenuLoadSymbolMap); 248 &GMainWindow::OnMenuLoadSymbolMap);
249 connect(ui.action_Select_Game_List_Root, &QAction::triggered, this, 249 connect(ui.action_Select_Game_List_Root, &QAction::triggered, this,
250 &GMainWindow::OnMenuSelectGameListRoot); 250 &GMainWindow::OnMenuSelectGameListRoot);
251 connect(ui.action_Exit, &QAction::triggered, this, &QMainWindow::close);
251 252
252 // Emulation 253 // Emulation
253 connect(ui.action_Start, &QAction::triggered, this, &GMainWindow::OnStartGame); 254 connect(ui.action_Start, &QAction::triggered, this, &GMainWindow::OnStartGame);
@@ -258,6 +259,8 @@ void GMainWindow::ConnectMenuEvents() {
258 // View 259 // View
259 connect(ui.action_Single_Window_Mode, &QAction::triggered, this, 260 connect(ui.action_Single_Window_Mode, &QAction::triggered, this,
260 &GMainWindow::ToggleWindowMode); 261 &GMainWindow::ToggleWindowMode);
262 connect(ui.action_Display_Dock_Widget_Headers, &QAction::triggered, this,
263 &GMainWindow::OnDisplayTitleBars);
261} 264}
262 265
263void GMainWindow::OnDisplayTitleBars(bool show) { 266void GMainWindow::OnDisplayTitleBars(bool show) {