Qt/MappingButton: Fix bad range default
This commit is contained in:
parent
40cf07d8e7
commit
0595fd498f
|
@ -23,6 +23,8 @@
|
||||||
#include "InputCommon/ControllerInterface/ControllerInterface.h"
|
#include "InputCommon/ControllerInterface/ControllerInterface.h"
|
||||||
#include "InputCommon/ControllerInterface/Device.h"
|
#include "InputCommon/ControllerInterface/Device.h"
|
||||||
|
|
||||||
|
constexpr int SLIDER_TICK_COUNT = 100;
|
||||||
|
|
||||||
static QString EscapeAmpersand(QString&& string)
|
static QString EscapeAmpersand(QString&& string)
|
||||||
{
|
{
|
||||||
return string.replace(QStringLiteral("&"), QStringLiteral("&&"));
|
return string.replace(QStringLiteral("&"), QStringLiteral("&&"));
|
||||||
|
@ -130,7 +132,7 @@ void MappingButton::OnButtonTimeout()
|
||||||
void MappingButton::Clear()
|
void MappingButton::Clear()
|
||||||
{
|
{
|
||||||
m_reference->SetExpression("");
|
m_reference->SetExpression("");
|
||||||
m_reference->range = 100;
|
m_reference->range = 100.0 / SLIDER_TICK_COUNT;
|
||||||
m_parent->SaveSettings();
|
m_parent->SaveSettings();
|
||||||
Update();
|
Update();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue