mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 21:45:33 +00:00
Comment out setMinimum which is broken.
This commit is contained in:
parent
a1c0ec2feb
commit
8e71f092c5
1 changed files with 5 additions and 5 deletions
|
@ -76,9 +76,9 @@ void CSMSettings::UserSettings::buildSettingModelDefaults()
|
||||||
fastFactor->setDefaultValue(4);
|
fastFactor->setDefaultValue(4);
|
||||||
fastFactor->setEditorSetting(false);
|
fastFactor->setEditorSetting(false);
|
||||||
fastFactor->setColumnSpan (1);
|
fastFactor->setColumnSpan (1);
|
||||||
// FIXME: setMinimum or setSpecialVlueText appears to be broken, possibly due
|
// FIXME: setMinimum or setSpecialValueText appears to be broken, possibly due
|
||||||
// to there being an empty string default for special value text.
|
// to there being an empty string default for special value text.
|
||||||
fastFactor->setMinimum (1);
|
//fastFactor->setMinimum (1);
|
||||||
fastFactor->setSpecialValueText("1"); // workaround for above
|
fastFactor->setSpecialValueText("1"); // workaround for above
|
||||||
fastFactor->setMaximum (100); // FIXME: not sure what the max value should be
|
fastFactor->setMaximum (100); // FIXME: not sure what the max value should be
|
||||||
fastFactor->setWidgetWidth (10);
|
fastFactor->setWidgetWidth (10);
|
||||||
|
@ -109,7 +109,7 @@ void CSMSettings::UserSettings::buildSettingModelDefaults()
|
||||||
maxSubView->setDefaultValue(3);
|
maxSubView->setDefaultValue(3);
|
||||||
maxSubView->setEditorSetting(false);
|
maxSubView->setEditorSetting(false);
|
||||||
maxSubView->setColumnSpan (1);
|
maxSubView->setColumnSpan (1);
|
||||||
maxSubView->setMinimum (1);
|
//maxSubView->setMinimum (1);
|
||||||
maxSubView->setSpecialValueText("1"); // workaround for setMinimum
|
maxSubView->setSpecialValueText("1"); // workaround for setMinimum
|
||||||
maxSubView->setMaximum (100); // FIXME: not sure what the max value should be
|
maxSubView->setMaximum (100); // FIXME: not sure what the max value should be
|
||||||
maxSubView->setWidgetWidth (10);
|
maxSubView->setWidgetWidth (10);
|
||||||
|
@ -119,8 +119,8 @@ void CSMSettings::UserSettings::buildSettingModelDefaults()
|
||||||
minWidth->setDefaultValue(325);
|
minWidth->setDefaultValue(325);
|
||||||
minWidth->setEditorSetting(false);
|
minWidth->setEditorSetting(false);
|
||||||
minWidth->setColumnSpan (1);
|
minWidth->setColumnSpan (1);
|
||||||
minWidth->setMinimum (50);
|
//minWidth->setMinimum (50);
|
||||||
maxSubView->setSpecialValueText("50"); // workaround for setMinimum
|
minWidth->setSpecialValueText("50"); // workaround for setMinimum
|
||||||
minWidth->setMaximum (10000); // FIXME: not sure what the max value should be
|
minWidth->setMaximum (10000); // FIXME: not sure what the max value should be
|
||||||
minWidth->setWidgetWidth (10);
|
minWidth->setWidgetWidth (10);
|
||||||
minWidth->setViewLocation(2, 2);
|
minWidth->setViewLocation(2, 2);
|
||||||
|
|
Loading…
Reference in a new issue