From cd390714c9e02c7f3938d082b2fc23974a5b49fc Mon Sep 17 00:00:00 2001 From: spycrab Date: Thu, 19 Apr 2018 23:10:23 +0200 Subject: [PATCH] Qt: Fix "Open File" dialog opening twice --- Source/Core/DolphinQt2/MainWindow.cpp | 1 - 1 file changed, 1 deletion(-) 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);