From 55a5f0c1a3d05806a4891839914302795753eeb0 Mon Sep 17 00:00:00 2001 From: Galunid Date: Fri, 7 Aug 2020 22:05:52 +0200 Subject: [PATCH] Cleanup after #6449 (#6484) * Better description in spinwidget * Rename SpinWidget title from "Hold pan rate" -> "Text selection rate" --- plugins/gestures.koplugin/main.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/gestures.koplugin/main.lua b/plugins/gestures.koplugin/main.lua index a4ded948a..0063c1824 100644 --- a/plugins/gestures.koplugin/main.lua +++ b/plugins/gestures.koplugin/main.lua @@ -444,7 +444,6 @@ function Gestures:addIntervals(menu_items) end local items = SpinWidget:new{ text = T(_([[ -Used when selecting text. The rate is how often screen will be refreshed per second while selecting text. Higher values mean faster screen updates, but also use more CPU. Default value: %1]]), Screen.low_pan_rate and 5.0 or 30.0), @@ -455,7 +454,7 @@ Default value: %1]]), Screen.low_pan_rate and 5.0 or 30.0), value_step = 1, value_hold_step = 15, ok_text = _("Set rate"), - title_text = _("Hold pan rate"), + title_text = _("Text selection rate"), default_value = Screen.low_pan_rate and 5.0 or 30.0, callback = function(spin) G_reader_settings:saveSetting("hold_pan_rate", spin.value)