We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93799ba commit 796937cCopy full SHA for 796937c
orx-view-box/src/commonMain/kotlin/ViewBox.kt
@@ -56,8 +56,10 @@ class ViewBox(
56
override val moved = Event<MouseEvent>()
57
override var position: Vector2 = -clientArea.corner
58
59
- override val pressedButtons: MutableSet<MouseButton>
60
- get() = TODO("Not yet implemented")
+ // Note: use MouseTracker() instead of pressedButtons
+ //override val pressedButtons: MutableSet<MouseButton>
61
+ // get() = TODO("Not yet implemented")
62
+
63
override val scrolled = Event<MouseEvent>()
64
}
65
@@ -298,4 +300,4 @@ fun Program.viewBox(
298
300
viewBox.f()
299
301
302
return viewBox
-}
303
+}
0 commit comments