Modify newlines in Editor Spin Slider tooltip
Makes both key suggestions easier to read.
This commit is contained in:
parent
c40855f818
commit
a2ba189fef
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ String EditorSpinSlider::get_tooltip(const Point2 &p_pos) const {
|
||||||
#else
|
#else
|
||||||
Key key = Key::CTRL;
|
Key key = Key::CTRL;
|
||||||
#endif
|
#endif
|
||||||
return TS->format_number(rtos(get_value())) + "\n\n" + vformat(TTR("Hold %s to round to integers. Hold Shift for more precise changes."), find_keycode_name(key));
|
return TS->format_number(rtos(get_value())) + "\n\n" + vformat(TTR("Hold %s to round to integers.\nHold Shift for more precise changes."), find_keycode_name(key));
|
||||||
}
|
}
|
||||||
return TS->format_number(rtos(get_value()));
|
return TS->format_number(rtos(get_value()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue