Round zoom number display to 1 decimal place
This commit is contained in:
parent
497f069d20
commit
7e6726bef7
1 changed files with 1 additions and 1 deletions
|
@ -349,7 +349,7 @@ void Editor::onHoveredMapMetatileChanged(int x, int y) {
|
|||
.arg(x)
|
||||
.arg(y)
|
||||
.arg(QString("%1").arg(tile, 3, 16, QChar('0')).toUpper())
|
||||
.arg(QString::number(pow(scale_base, scale_exp))));
|
||||
.arg(QString::number(pow(scale_base, scale_exp), 'g', 2)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue