From b19ce4b74144eef652a2200a319ea6cfc87d6485 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Tue, 14 May 2019 13:06:25 -0700 Subject: [PATCH] libsysprof-ui: remove offsets from allocation This isn't actually needed, and messes things up in the new capture view depending on the ancestry. --- src/libsysprof-ui/sysprof-visualizer-view.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/libsysprof-ui/sysprof-visualizer-view.c b/src/libsysprof-ui/sysprof-visualizer-view.c index 4304e0dc..cb7a6262 100644 --- a/src/libsysprof-ui/sysprof-visualizer-view.c +++ b/src/libsysprof-ui/sysprof-visualizer-view.c @@ -95,7 +95,6 @@ get_time_from_coordinates (SysprofVisualizerView *self, { SysprofVisualizerViewPrivate *priv = sysprof_visualizer_view_get_instance_private (self); SysprofVisualizerRow *row1 = NULL; - GtkAllocation alloc; gint64 begin_time; gint64 end_time; gint graph_width; @@ -105,11 +104,6 @@ get_time_from_coordinates (SysprofVisualizerView *self, if (priv->reader == NULL) return 0; - gtk_widget_get_allocation (GTK_WIDGET (self), &alloc); - - x -= alloc.x; - y -= alloc.y; - /* * Find the first row so we can get an idea of how wide the graph is * (ignoring spacing caused by the widget being wider than the data points.