Skip to content

Commit 16acdf4

Browse files
committed
Merge
2 parents 1604a3a + 696ae2d commit 16acdf4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

source/gui/settingsDialogs.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5443,12 +5443,14 @@ def makeSettings(self, settingsSizer):
54435443
)
54445444
# Translators: The label for a setting in braille settings to change the rate for autoscroll.
54455445
autoScrollRateText = _("Auto&matic scroll rate (cells/sec)")
5446-
self.autoScrollRateSlider: nvdaControls.EnhancedInputSlider = followCursorGroupHelper.addLabeledControl(
5447-
autoScrollRateText,
5448-
nvdaControls.EnhancedInputSlider,
5449-
minValue=5,
5450-
maxValue=100,
5446+
self.autoScrollRateSlider: nvdaControls.EnhancedInputSlider = (
5447+
followCursorGroupHelper.addLabeledControl(
5448+
autoScrollRateText,
5449+
nvdaControls.EnhancedInputSlider,
5450+
minValue=5,
5451+
maxValue=100,
54515452
)
5453+
)
54525454
self.autoScrollRateSlider.SetValue(int(config.conf["braille"]["autoScrollRate"] * 5))
54535455
self.autoScrollRateSlider.SetLineSize(2)
54545456
self.bindHelpEvent("BrailleAutoScrollRate", self.autoScrollRateSlider)

0 commit comments

Comments
 (0)