aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-08-09 18:00:34 +0800
committerMilan Crha <mcrha@redhat.com>2013-08-09 18:00:34 +0800
commitcda90fa34229e3724895e545be229ebaa7db42e3 (patch)
tree02a59a2b38866566721642c6208cbff327b7a763 /e-util
parent826f30de86c4653febe0707b56ae81b844982043 (diff)
downloadgsoc2013-evolution-cda90fa34229e3724895e545be229ebaa7db42e3.tar
gsoc2013-evolution-cda90fa34229e3724895e545be229ebaa7db42e3.tar.gz
gsoc2013-evolution-cda90fa34229e3724895e545be229ebaa7db42e3.tar.bz2
gsoc2013-evolution-cda90fa34229e3724895e545be229ebaa7db42e3.tar.lz
gsoc2013-evolution-cda90fa34229e3724895e545be229ebaa7db42e3.tar.xz
gsoc2013-evolution-cda90fa34229e3724895e545be229ebaa7db42e3.tar.zst
gsoc2013-evolution-cda90fa34229e3724895e545be229ebaa7db42e3.zip
Bug #704207 - Dragged column's arrow indicator oversized
Diffstat (limited to 'e-util')
-rw-r--r--e-util/e-table-header-item.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/e-util/e-table-header-item.c b/e-util/e-table-header-item.c
index 103ed3a807..ad3fff41cd 100644
--- a/e-util/e-table-header-item.c
+++ b/e-util/e-table-header-item.c
@@ -468,6 +468,9 @@ make_shaped_window_from_xpm (const gchar **xpm)
win = gtk_window_new (GTK_WINDOW_POPUP);
gtk_window_set_type_hint (GTK_WINDOW (win), GDK_WINDOW_TYPE_HINT_NOTIFICATION);
+ gtk_window_set_resizable (GTK_WINDOW (win), FALSE);
+
+ gtk_widget_set_size_request (win, gdk_pixbuf_get_width (pixbuf), gdk_pixbuf_get_height (pixbuf));
pix = gtk_image_new_from_pixbuf (pixbuf);
gtk_widget_realize (win);