change remove order on keyboard shortcut

This commit is contained in:
Sascha Kruse 2012-06-21 18:40:36 +02:00
parent d6f3868cc0
commit 1410ddc8af

View File

@ -464,7 +464,6 @@ void handle_mouse_click(XEvent ev)
void handleXEvents(void)
{
XEvent ev;
l_node *iter;
while (XPending(dc->dpy) > 0) {
XNextEvent(dc->dpy, &ev);
switch (ev.type) {
@ -488,11 +487,9 @@ void handleXEvents(void)
case KeyPress:
if (XLookupKeysym(&ev.xkey, 0) == key) {
if (!l_is_empty(displayed_notifications)) {
for (iter =
displayed_notifications->head;
iter->next; iter = iter->next) ;
l_move(displayed_notifications,
notification_history, iter);
notification_history,
displayed_notifications->head);
}
}
if (XLookupKeysym(&ev.xkey, 0) == history_key) {