Skip to content

Commit

Permalink
ui: FlattenTool: change the text of the raise/lower checkbox to make …
Browse files Browse the repository at this point in the history
…their use more obvious
  • Loading branch information
Adspartan committed Feb 11, 2020
1 parent f7e26c5 commit cce54a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/noggit/ui/FlattenTool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ namespace noggit
lock_checkbox_layout->addWidget(_lock_down_checkbox = new QCheckBox(this), 0, 1);

_lock_up_checkbox->setChecked(_flatten_mode.raise);
_lock_up_checkbox->setText("up");
_lock_up_checkbox->setText("raise");
_lock_up_checkbox->setToolTip("Raise the terrain when using the tool");
_lock_down_checkbox->setChecked(_flatten_mode.lower);
_lock_down_checkbox->setText("down");
_lock_down_checkbox->setText("lower");
_lock_down_checkbox->setToolTip("Lower the terrain when using the tool");

layout->addRow(lock_checkbox_layout);
Expand Down

0 comments on commit cce54a0

Please sign in to comment.