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.