From 4b75876ba1a6d2de0ca4c05e8b6c8d3f3dc30cf4 Mon Sep 17 00:00:00 2001 From: aldelaro5 Date: Sat, 6 Oct 2018 21:22:34 -0400 Subject: [PATCH] Qt/debugger: Accept empty prefix input --- Source/Core/DolphinQt/MenuBar.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 2dbb83a936..b259fd0f30 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -1279,8 +1279,6 @@ void MenuBar::CreateSignatureFile() { const QString text = QInputDialog::getText( this, tr("Input"), tr("Only export symbols with prefix:\n(Blank for all symbols)")); - if (text.isEmpty()) - return; const QString file = QFileDialog::getSaveFileName(this, tr("Save signature file")); if (file.isEmpty())