mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 14:10:30 +00:00
cellarea: Fix cell editing
We need to translate the event coordinates to widget-relative coordinates. This broke when we stopped translating event coordinates in-place.
This commit is contained in:
parent
e662438675
commit
7b135c96e4
@ -1042,12 +1042,19 @@ gtk_cell_area_real_event (GtkCellArea *area,
|
|||||||
GtkCellRenderer *renderer = NULL;
|
GtkCellRenderer *renderer = NULL;
|
||||||
GtkCellRenderer *focus_renderer;
|
GtkCellRenderer *focus_renderer;
|
||||||
GdkRectangle alloc_area;
|
GdkRectangle alloc_area;
|
||||||
gdouble event_x, event_y;
|
double event_x, event_y;
|
||||||
|
int x, y;
|
||||||
|
GtkNative *native;
|
||||||
|
|
||||||
/* We may need some semantics to tell us the offset of the event
|
/* We may need some semantics to tell us the offset of the event
|
||||||
* window we are handling events for (i.e. GtkTreeView has a bin_window) */
|
* window we are handling events for (i.e. GtkTreeView has a bin_window) */
|
||||||
gdk_event_get_position (event, &event_x, &event_y);
|
gdk_event_get_position (event, &event_x, &event_y);
|
||||||
|
|
||||||
|
native = gtk_widget_get_native (widget);
|
||||||
|
gtk_widget_translate_coordinates (GTK_WIDGET (native), widget, event_x, event_y, &x, &y);
|
||||||
|
event_x = x;
|
||||||
|
event_y = y;
|
||||||
|
|
||||||
/* Dont try to search for an event coordinate that is not in the area, that will
|
/* Dont try to search for an event coordinate that is not in the area, that will
|
||||||
* trigger a runtime warning.
|
* trigger a runtime warning.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user