Qt/MappingButton: Fix crash when exiting during input detection

This commit is contained in:
spycrab 2018-08-11 17:37:12 +02:00
parent a2b97665bb
commit 159d5a6925

View File

@ -3,7 +3,6 @@
// Refer to the license.txt file included.
#include <future>
#include <thread>
#include <utility>
#include <QApplication>
@ -23,6 +22,7 @@
#include "DolphinQt/Config/Mapping/MappingWidget.h"
#include "DolphinQt/Config/Mapping/MappingWindow.h"
#include "DolphinQt/QtUtils/BlockUserInputFilter.h"
#include "DolphinQt/QtUtils/QueueOnObject.h"
#include "DolphinQt/Settings.h"
#include "InputCommon/ControlReference/ControlReference.h"
@ -110,9 +110,12 @@ void MappingButton::Detect()
grabKeyboard();
// Make sure that we don't block event handling
std::thread thread([this] {
QueueOnObject(this, [this] {
setText(QStringLiteral("..."));
// The button text won't be updated if we don't process events here
QApplication::processEvents();
// Avoid that the button press itself is registered as an event
Common::SleepCurrentThread(100);
@ -188,8 +191,6 @@ void MappingButton::Detect()
OnButtonTimeout();
}
});
thread.detach();
}
void MappingButton::OnButtonTimeout()