diff options
Diffstat (limited to 'core/src/widget/button.vala')
-rw-r--r-- | core/src/widget/button.vala | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/src/widget/button.vala b/core/src/widget/button.vala index 4d1f467..ad60da1 100644 --- a/core/src/widget/button.vala +++ b/core/src/widget/button.vala @@ -33,11 +33,11 @@ public class Button : Gtk.Button { } public enum MouseButton { - PRIMARY, - MIDDLE, - SECONDARY, - BACK, - FORWARD, + PRIMARY = 1, + MIDDLE = 2, + SECONDARY = 3, + BACK = 4, + FORWARD = 5, } // these structs are here because gjs converts every event |