changed.
(xg_tool_bar_proxy_callback): Put focus on the frame after we have
clicked on a detached tool bar button.
* gtkutil.c (xg_frame_resized): Remove check if rows/columns have
changed.
+ (xg_tool_bar_proxy_callback): Put focus on the frame after we have
+ clicked on a detached tool bar button.
2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
XG_TOOL_BAR_PROXY_BUTTON));
xg_tool_bar_callback (wbutton, client_data);
+ FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (wbutton),
+ XG_FRAME_DATA);
+ /* Put focus back to the frame after we have clicked on a detached
+ tool bar button. */
+ Lisp_Object frame;
+ XSETFRAME (frame, f);
+ Fx_focus_frame (frame);
}
/* This callback is called when a tool item should create a proxy item,