Skip to content

Commit 51a3bd6

Browse files
committed
Fix bug with missing import
1 parent 601b65b commit 51a3bd6

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

addon/globalPlugins/mouseWheelScrolling/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
#This file is covered by the GNU General Public License.
44
#See the file COPYING for more details.
55

6+
import addonHandler
67
import globalPluginHandler
78
import mouseHandler
89
from scriptHandler import script
910
import tones
1011
import winUser
1112

1213
_curAddon = addonHandler.getCodeAddon()
13-
addonName = _curAddon.name.lower()
14+
addonName = _curAddon.name
1415
_addonSummary = _curAddon.manifest['summary']
1516
addonHandler.initTranslation()
1617

buildVars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _(arg):
2525
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
2626
"addon_description": _("""This addon makes it possible to emulate mouse wheel to scroll an object from a keyboard."""),
2727
# version
28-
"addon_version": "0.1.0",
28+
"addon_version": "0.1.1",
2929
# Author(s)
3030
"addon_author": "Beka Gozalishvili <beqaprogger@gmail.com>",
3131
# URL for the add-on documentation support

readme.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ The following keys must be used when wheel scrolling mode is turned on by pressi
1717
* home: Tries to scroll up to maximum. Especially needed for sliders which cannot be controlled from keyboard,
1818
* end: Tries to scroll down to minimum. Especially needed for sliders which cannot be controlled from keyboard.
1919

20-
## Changes for 1.0 ##
20+
## Changes for 0.1.1 ##
21+
* Fixed bug with missing import.
22+
23+
## Changes for 0.1.0 ##
2124
* Initial version.
2225

2326
[1]: https://addons.nvda-project.org/legacy?file=mouseWheelScrolling

0 commit comments

Comments
 (0)