[chore] NumberPickerWidget: remove stray newline in string (#9302)

reviewable/pr9307/r1
Frans de Jonge 2 years ago committed by GitHub
parent 0548eaa95b
commit 3ffa65d24f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -182,7 +182,7 @@ function NumberPickerWidget:init()
if not input_value then return end
if input_value < self.value_min or input_value > self.value_max then
UIManager:show(InfoMessage:new{
text = T(_("ATTENTION:\nPrefixing the input with ':' disables sanity checks!\nThis value should be in the range of %1 - %2.\nUndefined behavior may occur.\n"), self.value_min, self.value_max),
text = T(_("ATTENTION:\nPrefixing the input with ':' disables sanity checks!\nThis value should be in the range of %1 - %2.\nUndefined behavior may occur."), self.value_min, self.value_max),
})
end
self.value = input_value

Loading…
Cancel
Save