[gtk+] roundedbox: Fix copy-paste error
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] roundedbox: Fix copy-paste error
- Date: Fri, 21 Dec 2012 19:10:11 +0000 (UTC)
commit 308971cc2ef08bd3520efe1214abaf75820dd17d
Author: Benjamin Otte <otte redhat com>
Date: Thu Dec 20 19:51:06 2012 +0100
roundedbox: Fix copy-paste error
y coordinates don't care about the right value, they want bottom.
gtk/gtkroundedbox.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkroundedbox.c b/gtk/gtkroundedbox.c
index 3fa44e0..653d27f 100644
--- a/gtk/gtkroundedbox.c
+++ b/gtk/gtkroundedbox.c
@@ -171,7 +171,7 @@ _gtk_rounded_box_grow (GtkRoundedBox *box,
box->box.width += left + right;
}
- if (box->box.height + bottom + right < 0)
+ if (box->box.height + bottom + top < 0)
{
box->box.y -= top * box->box.height / (top + bottom);
box->box.height = 0;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]