diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 6b23849..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Python Debugger: Current File", - "type": "debugpy", - "request": "launch", - "program": "${file}", - "console": "integratedTerminal", - "env": { - "PYTHONPATH": "${cwd}/src" - } - }, - { - "name": "Python Debugger: BasicPy", - "type": "debugpy", - "request": "launch", - "program": "${cwd}/examples/BasicPy/src/BasicPy/main.py", - "console": "integratedTerminal", - }, - { - "name": "Python Debugger: IntermediatePy", - "type": "debugpy", - "request": "launch", - "program": "${cwd}/examples/IntermediatePy/src/IntermediatePy/main.py", - "console": "integratedTerminal", - }, - { - "name": "Python Debugger: AdvancedPy", - "type": "debugpy", - "request": "launch", - "program": "${cwd}/examples/AdvancedPy/src/AdvancedPy/main.py", - "console": "integratedTerminal", - } - ] -} diff --git a/pyproject.toml b/pyproject.toml index 89b17b9..1149e19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ ] requires-python = '>=3.10' dependencies = [ - 'PySide6>=6.6,<6.7' + 'PySide6>=6.8,<6.9' # updated due to Numpy2 dependency ] [project.urls] diff --git a/src/EasyApp/Gui/Elements/RemoteController.qml b/src/EasyApp/Gui/Elements/RemoteController.qml index 144846c..ccf93a6 100644 --- a/src/EasyApp/Gui/Elements/RemoteController.qml +++ b/src/EasyApp/Gui/Elements/RemoteController.qml @@ -281,8 +281,8 @@ Item { const y = item.height / 2 const button = Qt.NoButton const delay = -1 - - event.mouseMove(item, x, y, delay, button) + const modifiers = Qt.NoModifier + event.mouseMove(item, x, y, button, modifiers, delay) } function mouseWheel(item) {