mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 09:25:31 +02:00
Remove erroneous exclamation mark
This commit is contained in:
parent
b74c1d3476
commit
e9e1d0cb2f
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ void setupPreferences() {
|
|||
// UI
|
||||
{
|
||||
auto getter = []()->bool { return qApp->getSettingConstrainToolbarPosition(); };
|
||||
auto setter = [](bool value) { qApp->setSettingConstrainToolbarPosition(!value); };
|
||||
auto setter = [](bool value) { qApp->setSettingConstrainToolbarPosition(value); };
|
||||
preferences->addPreference(new CheckPreference("UI", "Constrain Toolbar Position to Horizontal Center", getter, setter));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue