mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-27 15:54:55 +00: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:
commit
4c727a84c5
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue