From 5d71a32820127174f1610029cb13b0f21bae2f0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=C3=B6hler?= Date: Mon, 3 Mar 2008 22:36:02 +0000 Subject: [PATCH] Let dense calendar popups stay visible on whole height of bottom-most days. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17004 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome-utils/gnc-dense-cal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gnome-utils/gnc-dense-cal.c b/src/gnome-utils/gnc-dense-cal.c index 47bf716799..9a3a905029 100644 --- a/src/gnome-utils/gnc-dense-cal.c +++ b/src/gnome-utils/gnc-dense-cal.c @@ -1620,7 +1620,7 @@ wheres_this(GncDenseCal *dcal, int x, int y) { return -1; } - if (y >= col_height(dcal)) + if (y >= dcal->dayLabelHeight + col_height(dcal)) { return -1; }