more switches

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

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 );
}
}
};