mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user