This is an automated email from the git hooks/post-receive script.

landry pushed a 
commit to branch 
master
in repository apps/xfce4-taskmanager.

commit c408ee48db100b51500d2d8264c7b77066d600d9
Author: rim <rozhuk...@gmail.com>
Date:   Sat May 26 22:52:37 2018 +0200

    Fix clang warning by grouping conditions (bug 14402)
---
 src/process-window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/process-window.c b/src/process-window.c
index aa9ff67..f54e9fc 100644
--- a/src/process-window.c
+++ b/src/process-window.c
@@ -397,7 +397,7 @@ xtm_process_window_key_pressed (XtmProcessWindow *window, 
GdkEventKey *event)
                emit_delete_event_signal (window, (GdkEvent*) event);
                ret = TRUE;
        }
-       else if (event->keyval == GDK_KEY_f && event->state & GDK_CONTROL_MASK) 
{
+       else if (event->keyval == GDK_KEY_f && (event->state & 
GDK_CONTROL_MASK)) {
                gtk_widget_grab_focus (GTK_WIDGET(window->filter_entry));
                ret = TRUE;
        }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to