Merge pull request #13456 from jordan-woyak/mapping-window-blank-square-fix

DolphinQt: Fix blank square in MappingWindow's top-left corner.
This commit is contained in:
JMC47 2025-03-28 18:44:32 -04:00 committed by GitHub
commit 4c727a84c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,10 +31,10 @@ bool ContainsAnalogInput(const ciface::Core::InputDetector::Results& results)
return std::ranges::any_of(results, [](auto& detection) { return detection.smoothness > 1; });
}
class MappingProcessor : public QWidget
class MappingProcessor : public QObject
{
public:
MappingProcessor(MappingWindow* parent) : QWidget{parent}, m_parent{parent}
MappingProcessor(MappingWindow* parent) : QObject{parent}, m_parent{parent}
{
using MW = MappingWindow;
using MP = MappingProcessor;