Skip to content

Commit 8dfe987

Browse files
committed
Merge branch 'brailleScroll' of https://github.com/nvdaes/nvda into brailleScroll
2 parents 1b9a677 + 811e48b commit 8dfe987

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/globalCommands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ def script_increaseBrailleAutoScrollRate(self, gesture: inputCore.InputGesture):
857857
config.conf["braille"]["autoScrollRate"] += 0.5
858858
else:
859859
config.conf["braille"]["autoScrollRate"] = maxRate
860-
rate = f"{config.conf["braille"]["autoScrollRate"]:.1f}"
860+
rate = f"{config.conf['braille']['autoScrollRate']:.1f}"
861861
ui.message(rate)
862862

863863
@script(
@@ -875,7 +875,7 @@ def script_decreaseBrailleAutoScrollRate(self, gesture: inputCore.InputGesture):
875875
config.conf["braille"]["autoScrollRate"] -= 0.5
876876
else:
877877
config.conf["braille"]["autoScrollRate"] = minRate
878-
rate = f"{config.conf["braille"]["autoScrollRate"]:.1f}"
878+
rate = f"{config.conf['braille']['autoScrollRate']:.1f}"
879879
ui.message(rate)
880880

881881
@script(

0 commit comments

Comments
 (0)