Modify newlines in Editor Spin Slider tooltip

Makes both key suggestions easier to read.
This commit is contained in:
Micky 2022-08-31 11:34:43 +02:00
parent c40855f818
commit a2ba189fef
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ String EditorSpinSlider::get_tooltip(const Point2 &p_pos) const {
#else
Key key = Key::CTRL;
#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()));
}