1
0
Fork 0

2007-10-19 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-entry.c (clutter_entry_paint): Fixed off by
	one error. (#566, Gwenole Beauchesne)
This commit is contained in:
Emmanuele Bassi 2007-10-19 10:15:57 +00:00
parent 373da11329
commit e937961870
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-10-19 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-entry.c (clutter_entry_paint): Fixed off by
one error. (#566, Gwenole Beauchesne)
2007-10-18 Øyvind Kolås <pippin@o-hand.com>
* clutter/clutter-timeline.c: (clutter_timeline_set_duration):

View file

@ -426,7 +426,7 @@ clutter_entry_paint (ClutterActor *self)
}
else
{
if (priv->text_x < 0)
if (priv->text_x <= 0)
{
gint diff = -1 * priv->text_x;