Allow "None" as modifier string for bindings without modifiers

This is more userfriendly than the empty string approach.
This commit is contained in:
Leon Henrik Plickat
2020-10-18 02:47:48 +02:00
committed by Isaac Freund
parent ec5d5e8826
commit 4b4f7c464c
2 changed files with 2 additions and 3 deletions

View File

@ -29,7 +29,7 @@ const modifier_names = [_]struct {
name: []const u8,
modifier: u32,
}{
.{ .name = "", .modifier = 0 },
.{ .name = "None", .modifier = 0 },
.{ .name = "Shift", .modifier = c.WLR_MODIFIER_SHIFT },
.{ .name = "Lock", .modifier = c.WLR_MODIFIER_CAPS },
.{ .name = "Control", .modifier = c.WLR_MODIFIER_CTRL },