GNOME Bugzilla – Bug 587863
Nautilus closes when clicking on toolbar
Last modified: 2009-07-06 10:25:31 UTC
Please describe the problem: Nautilus closes down when clicking on the blank area in the toolbar. the version is 2.27.1. Steps to reproduce: Actual results: Expected results: Does this happen every time? Yes. Other information:
https://bugzilla.novell.com/show_bug.cgi?id=508085 David already submit a patch for this issue. The bug caused by nautilus_navigation_window_button_press_event. It used a parent button press event which is NULL in fact. diff -Npur nautilus-2.27.1.old/src/nautilus-navigation-window.c nautilus-2.27.1.new//src/nautilus-navigation-window.c --- nautilus-2.27.1.old/src/nautilus-navigation-window.c 2009-07-06 16:43:24.000000000 +0800 +++ nautilus-2.27.1.new//src/nautilus-navigation-window.c 2009-07-06 16:44:38.000000000 +0800 @@ -1001,9 +1001,7 @@ nautilus_navigation_window_button_press_ } else if (mouse_extra_buttons && (event->button == mouse_forward_button)) { nautilus_navigation_window_go_forward (window); handled = TRUE; - } else { - handled = GTK_WIDGET_CLASS (nautilus_navigation_window_parent_class)->button_press_event (widget, event); - } + } return handled; } So is the correct way for this issue?
Thanks for taking the time to report this bug. This particular bug has already been reported into our bug tracking system, but we are happy to tell you that the problem has already been fixed. It should be solved in the next software version. You may want to check for a software upgrade. *** This bug has been marked as a duplicate of 582457 ***