From 5a499ef3e165a0e0788fd2d92bf506f1453d68d9 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Thu, 11 Jun 2015 17:10:54 +0200 Subject: [PATCH] texthandle: Remove knowledge about window borders We need to expand beyond these if necessary, so don't artificially limit things here. --- gtk/gtktexthandle.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gtk/gtktexthandle.c b/gtk/gtktexthandle.c index 231c4f45f6..adda5d93d2 100644 --- a/gtk/gtktexthandle.c +++ b/gtk/gtktexthandle.c @@ -373,7 +373,6 @@ _gtk_text_handle_update (GtkTextHandle *handle, cairo_rectangle_int_t rect; gint width, height; GtkWidget *window; - GtkBorder shadow; GtkAllocation alloc; gint w, h; @@ -412,12 +411,7 @@ _gtk_text_handle_update (GtkTextHandle *handle, * knowledge about how popover_get_rect() works. */ - _gtk_window_get_shadow_width (GTK_WINDOW (window), &shadow); gtk_widget_get_allocation (window, &alloc); - alloc.x += shadow.left; - alloc.y += shadow.top; - alloc.width -= shadow.left + shadow.right; - alloc.height -= shadow.top + shadow.bottom; w = width + border->left + border->right; h = height + border->top + border->bottom;