[yast-commit] r62818 - /trunk/gtk/src/ygtktreeview.c
Author: rpmcruz Date: Wed Nov 10 21:07:22 2010 New Revision: 62818 URL: http://svn.opensuse.org/viewcvs/yast?rev=62818&view=rev Log: Chaned the code a little bit. Modified: trunk/gtk/src/ygtktreeview.c Modified: trunk/gtk/src/ygtktreeview.c URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/ygtktreeview.c?rev=62818&r1=62817&r2=62818&view=diff ============================================================================== --- trunk/gtk/src/ygtktreeview.c (original) +++ trunk/gtk/src/ygtktreeview.c Wed Nov 10 21:07:22 2010 @@ -40,15 +40,7 @@ static void _ygtk_tree_view_menu_position_func ( GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer user_data) -{ - GtkWidget *widget = (GtkWidget *) user_data; - gtk_tree_view_convert_bin_window_to_widget_coords ( - GTK_TREE_VIEW (widget), _popup_x, _popup_y, x, y); - - gint root_x, root_y; - gdk_window_get_origin (widget->window, &root_x, &root_y); - *x += root_x; *y += root_y; -} +{ *x = _popup_x; *y = _popup_y; } void ygtk_tree_view_popup_menu (YGtkTreeView *view, GtkWidget *menu) { @@ -82,7 +74,7 @@ } _popup_time = event->time; - _popup_x = event->x; _popup_y = event->y; + _popup_x = event->x_root; _popup_y = event->y_root; gtk_widget_grab_focus (widget); g_signal_emit (widget, right_click_signal, 0, outreach); @@ -116,6 +108,14 @@ g_list_free (rows); } + GtkWidget *widget = (GtkWidget *) user_data; + gtk_tree_view_convert_bin_window_to_widget_coords ( + GTK_TREE_VIEW (widget), _popup_x, _popup_y, &_popup_x, &_popup_y); + + gint x_orig, y_orig; + gdk_window_get_origin (widget->window, &x_orig, &y_orig); + _popup_x += x_orig; _popup_y += y_orig; + g_signal_emit (widget, right_click_signal, 0, outreach); return TRUE; } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
rpmcruz@svn2.opensuse.org