summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorspycrab <spycrab@users.noreply.github.com>2018-04-19 23:10:23 +0200
committerspycrab <spycrab@users.noreply.github.com>2018-04-19 23:10:23 +0200
commitcd390714c9e02c7f3938d082b2fc23974a5b49fc (patch)
tree7e28f6452b27855f1611b6bd9ffc2d84ce9e0a47 /Source/Core
parent396204248daa3946e7db8f5a733b82f64d4a160d (diff)
Qt: Fix "Open File" dialog opening twice
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt2/MainWindow.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt2/MainWindow.cpp b/Source/Core/DolphinQt2/MainWindow.cpp
index e5f9806af9..5a8ebd57d7 100644
--- a/Source/Core/DolphinQt2/MainWindow.cpp
+++ b/Source/Core/DolphinQt2/MainWindow.cpp
@@ -357,7 +357,6 @@ void MainWindow::ConnectToolBar()
connect(m_tool_bar, &ToolBar::OpenPressed, this, &MainWindow::Open);
- connect(m_tool_bar, &ToolBar::OpenPressed, this, &MainWindow::Open);
connect(m_tool_bar, &ToolBar::PlayPressed, this, [this]() { Play(); });
connect(m_tool_bar, &ToolBar::PausePressed, this, &MainWindow::Pause);
connect(m_tool_bar, &ToolBar::StopPressed, this, &MainWindow::RequestStop);