From df3f7b01e615be2cefb8cd8500ab343d1ee31ec2 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Sat, 4 Jul 2015 14:04:35 +0200 Subject: [PATCH] Bug 751645 - tagbox dialog not showing lower tags gimp_tag_popup_constructed(): calculate the height of the scrollable area correctly. --- app/widgets/gimptagpopup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/widgets/gimptagpopup.c b/app/widgets/gimptagpopup.c index 060c2a9c75..a1a7eccfef 100644 --- a/app/widgets/gimptagpopup.c +++ b/app/widgets/gimptagpopup.c @@ -350,7 +350,7 @@ gimp_tag_popup_constructed (GObject *object) popup_height -= 2 * popup->scroll_arrow_height + 4; - popup->scroll_height = height - popup_rect.height; + popup->scroll_height = height - popup_height; popup->scroll_y = 0; popup->scroll_step = 0; }