]> git.sur5r.net Git - i3/i3/blobdiff - src/handlers.c
Revert "Bugfix: Ignore enter_notify when warping pointer (makes "goto" work correctly)"
[i3/i3] / src / handlers.c
index 5eddf244029dac976bb50030e7330b50b4caff51..624c34305d5bd78caa9bcdbe89ab6291ad0e5095 100644 (file)
    changing workspaces */
 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
 
-/*
- * Adds the sequence number of an event to the ignored events.
- * Useful to ignore for example the enter notify caused by a pointer warp of
- * i3.
- *
- */
-void add_ignore_event(const int sequence) {
+static void add_ignore_event(const int sequence) {
         struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
 
         event->sequence = sequence;