Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .vscode/launch.json

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions src/EasyApp/Gui/Elements/RemoteController.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading