Skip to content

Commit

Permalink
Merge pull request #1274 from davidlamhauge/issue1193_feather_value
Browse files Browse the repository at this point in the history
#1193 Changing feather range to 1-99
  • Loading branch information
candyface committed Oct 3, 2019
2 parents c9fc9a7 + 026f658 commit fd9032f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/tooloptionwidget.cpp
Expand Up @@ -49,7 +49,7 @@ void ToolOptionWidget::initUI()
ui->sizeSlider->setValue(settings.value("brushWidth", "3").toDouble());
ui->brushSpinBox->setValue(settings.value("brushWidth", "3").toDouble());

ui->featherSlider->init(tr("Feather"), SpinSlider::LOG, SpinSlider::INTEGER, 2, 200);
ui->featherSlider->init(tr("Feather"), SpinSlider::LOG, SpinSlider::INTEGER, 1, 99);
ui->featherSlider->setValue(settings.value("brushFeather", "5").toDouble());
ui->featherSpinBox->setValue(settings.value("brushFeather", "5").toDouble());

Expand Down
4 changes: 2 additions & 2 deletions app/ui/tooloptions.ui
Expand Up @@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>164</width>
<height>341</height>
<height>361</height>
</rect>
</property>
<property name="windowTitle">
Expand Down Expand Up @@ -77,7 +77,7 @@
<double>0.100000000000000</double>
</property>
<property name="maximum">
<double>80.000000000000000</double>
<double>99.000000000000000</double>
</property>
<property name="value">
<double>5.000000000000000</double>
Expand Down

0 comments on commit fd9032f

Please sign in to comment.