more switches

This commit is contained in:
Uwe Rathmann 2022-04-03 16:37:36 +02:00
parent f4a9b15f11
commit de48deb7c8

View File

@ -67,7 +67,14 @@ namespace
(void) new QskSwitchButton( orientation, this );
auto button = new QskSwitchButton( orientation, this );
button->setChecked( true );
button = new QskSwitchButton( orientation, this );
button->setInverted( true );
button = new QskSwitchButton( orientation, this );
button->setInverted( true );
button->setChecked( true );
}
}
};