mirror of
https://github.com/brl/mutter.git
synced 2024-12-29 06:12:14 +00:00
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:
parent
373da11329
commit
e937961870
@ -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>
|
2007-10-18 Øyvind Kolås <pippin@o-hand.com>
|
||||||
|
|
||||||
* clutter/clutter-timeline.c: (clutter_timeline_set_duration):
|
* clutter/clutter-timeline.c: (clutter_timeline_set_duration):
|
||||||
|
@ -426,7 +426,7 @@ clutter_entry_paint (ClutterActor *self)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (priv->text_x < 0)
|
if (priv->text_x <= 0)
|
||||||
{
|
{
|
||||||
gint diff = -1 * priv->text_x;
|
gint diff = -1 * priv->text_x;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user