mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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; });
|
return std::ranges::any_of(results, [](auto& detection) { return detection.smoothness > 1; });
|
||||||
}
|
}
|
||||||
|
|
||||||
class MappingProcessor : public QWidget
|
class MappingProcessor : public QObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MappingProcessor(MappingWindow* parent) : QWidget{parent}, m_parent{parent}
|
MappingProcessor(MappingWindow* parent) : QObject{parent}, m_parent{parent}
|
||||||
{
|
{
|
||||||
using MW = MappingWindow;
|
using MW = MappingWindow;
|
||||||
using MP = MappingProcessor;
|
using MP = MappingProcessor;
|
||||||
|
Reference in New Issue
Block a user