summaryrefslogtreecommitdiff
path: root/openembedded/packages/gtk+/gtk+-2.6.7
diff options
context:
space:
mode:
authorTomas Frydrych <tf@openedhand.com>2006-05-30 11:26:19 +0000
committerTomas Frydrych <tf@openedhand.com>2006-05-30 11:26:19 +0000
commitb200c92f151d127c9f8906f9ff6c7078304822ae (patch)
tree59bb69290425a4d07591aa2cc88e60231d930b70 /openembedded/packages/gtk+/gtk+-2.6.7
parent59a49d9ca40f7129d75cad0bf54c4e009ce0a16c (diff)
downloadopenembedded-core-b200c92f151d127c9f8906f9ff6c7078304822ae.tar.gz
openembedded-core-b200c92f151d127c9f8906f9ff6c7078304822ae.tar.bz2
openembedded-core-b200c92f151d127c9f8906f9ff6c7078304822ae.tar.xz
openembedded-core-b200c92f151d127c9f8906f9ff6c7078304822ae.zip
* openembedded/packages/gtk+: added gtklabel-center.patch
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@452 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/gtk+/gtk+-2.6.7')
-rw-r--r--openembedded/packages/gtk+/gtk+-2.6.7/gtklabel-center.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/openembedded/packages/gtk+/gtk+-2.6.7/gtklabel-center.patch b/openembedded/packages/gtk+/gtk+-2.6.7/gtklabel-center.patch
new file mode 100644
index 000000000..b368cb4b7
--- /dev/null
+++ b/openembedded/packages/gtk+/gtk+-2.6.7/gtklabel-center.patch
@@ -0,0 +1,13 @@
+--- gtk+-2.6.7/gtk/gtklabel.c~ 2006-05-25 15:35:15.000000000 +0100
++++ gtk+-2.6.7/gtk/gtklabel.c 2006-05-30 11:40:37.000000000 +0100
+@@ -2185,8 +2185,8 @@
+ req_width - misc->xpad);
+
+ y = floor (widget->allocation.y + (gint)misc->ypad
+- + MAX (((widget->allocation.height - widget->requisition.height) * misc->yalign)
+- + 0.5, 0));
++ + ((widget->allocation.height - widget->requisition.height) * misc->yalign)
++ + 0.5);
+
+ if (xp)
+ *xp = x;