diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-01 21:02:33 +0100 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-01 21:02:33 +0100 | 
| commit | e464ea770f94826355f7841ef023abb6ae9350fb (patch) | |
| tree | 68200f8afaa849acffe44f17a902e2711d46c089 /gui | |
| parent | c05bce7e3df9ae7ef853af9dfc87d98856ba161c (diff) | |
gui/mapping-window: correct units
Spotted-by: @mrsanchos
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/mapping-window.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/gui/mapping-window.cpp b/gui/mapping-window.cpp index 0bb46c01..007e3217 100644 --- a/gui/mapping-window.cpp +++ b/gui/mapping-window.cpp @@ -66,7 +66,7 @@ void MapWidget::load()      for (QComboBox* x : { ui.max_x_translation, ui.max_y_translation, ui.max_z_translation })          for (a y : { a::t30, a::t20, a::t15, a::t10 }) -            x->addItem(QStringLiteral("%1 mm").arg(int(y)), y); +            x->addItem(QStringLiteral("%1 cm").arg(int(y)), y);      for (int i = 0; qfcs[i].qfc; i++)      { | 
