more switches

This commit is contained in:
Uwe Rathmann 2022-04-03 16:37:36 +02:00
parent f4a9b15f11
commit de48deb7c8
1 changed files with 7 additions and 0 deletions

View File

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