diff options
author | Fabrice Leal <fabrice.leal.ch@gmail.com> | 2018-07-09 22:34:11 +0100 |
---|---|---|
committer | Fabrice Leal <fabrice.leal.ch@gmail.com> | 2018-07-09 22:43:43 +0100 |
commit | b95811e4dab26d770c6d972a456ac0b31b39ca53 (patch) | |
tree | 96a49c4d42271ddaa5940c75dd13573ca97aa332 /lib/ur | |
parent | c98f27c7821f6d8f3add303da692630bba268d1d (diff) |
offsetX, offsetY
Diffstat (limited to 'lib/ur')
-rw-r--r-- | lib/ur/basis.urs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 66cc0e50..3b67946f 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -830,7 +830,7 @@ val meta : unit -> tag [Nam = meta, Content = string, Id = id] head [] [] [] datatype mouseButton = Left | Right | Middle -type mouseEvent = { ScreenX : int, ScreenY : int, ClientX : int, ClientY : int, +type mouseEvent = { ScreenX : int, ScreenY : int, ClientX : int, ClientY : int, OffsetX : int, OffsetY : int, CtrlKey : bool, ShiftKey : bool, AltKey : bool, MetaKey : bool, Button : mouseButton } |