https://bugzilla.xfce.org/show_bug.cgi?id=15553

--- Comment #4 from David Binderman <[email protected]> ---
From:
           /* no icons on the desktop, grab the focus and pop up the menu */
            if(!gtk_widget_has_grab(w))
                gtk_grab_add(w);

            xfce_desktop_popup_root_menu(desktop, button, evt->time);
            return TRUE;

to:


           /* if no icons on the desktop then grab the focus  */
            if(!gtk_widget_has_grab(w))
                gtk_grab_add(w);

            /* pop up the menu */
            xfce_desktop_popup_root_menu(desktop, button, evt->time);
            return TRUE;

No user visible change, but the comments and the code
now match up.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Xfce-bugs mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce-bugs

Reply via email to