[gtk+] texthandle: Remove knowledge about window borders



commit 5a499ef3e165a0e0788fd2d92bf506f1453d68d9
Author: Carlos Garnacho <carlosg gnome org>
Date:   Thu Jun 11 17:10:54 2015 +0200

    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 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/gtk/gtktexthandle.c b/gtk/gtktexthandle.c
index 231c4f4..adda5d9 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;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]