Skip to content

Commit

Permalink
fix #51 keymode enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Aylur committed Oct 20, 2024
1 parent eb3912a commit bfb7e27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/astal/gtk3/src/widget/window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public enum Astal.Layer {

public enum Astal.Keymode {
NONE = 0, // GtkLayerShell.KeyboardMode.NONE
ON_DEMAND = 1, // GtkLayerShell.KeyboardMode.ON_DEMAND
EXCLUSIVE = 2, // GtkLayerShell.KeyboardMode.EXCLUSIVE
EXCLUSIVE = 1, // GtkLayerShell.KeyboardMode.EXCLUSIVE
ON_DEMAND = 2, // GtkLayerShell.KeyboardMode.ON_DEMAND
}

public class Astal.Window : Gtk.Window {
Expand Down

0 comments on commit bfb7e27

Please sign in to comment.