1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 16:55:20 +03:00

switch up is -1

closes #6650
This commit is contained in:
Raphael Coeffic 2019-08-24 14:02:08 +02:00
parent ecf5a64424
commit b761f7b0e9

View file

@ -42,7 +42,7 @@ class RadioSwitchWidget : public RadioWidget
init();
}
explicit RadioSwitchWidget(Board::SwitchType type, const QString & labelText, int value = 0, QWidget * parent = Q_NULLPTR, Qt::WindowFlags f = Qt::WindowFlags()) :
explicit RadioSwitchWidget(Board::SwitchType type, const QString & labelText, int value = -1, QWidget * parent = Q_NULLPTR, Qt::WindowFlags f = Qt::WindowFlags()) :
RadioWidget(labelText, value, parent, f),
swType(type)
{
@ -127,7 +127,7 @@ class RadioSwitchWidget : public RadioWidget
void resetToggle()
{
setValue(0);
setValue(-1);
}
private slots: