mirror of
https://github.com/brl/mutter.git
synced 2025-02-08 01:24:10 +00:00
2007-07-05 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-rectangle.c: Fix off-by-border-width bug in the border creation of a ClutterRectangle.
This commit is contained in:
parent
c756541ee3
commit
61db350ca4
@ -1,3 +1,8 @@
|
|||||||
|
2007-07-05 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
|
* clutter/clutter-rectangle.c: Fix off-by-border-width bug
|
||||||
|
in the border creation of a ClutterRectangle.
|
||||||
|
|
||||||
2007-07-05 Tomas Frydrych <tf@openedhand.com>
|
2007-07-05 Tomas Frydrych <tf@openedhand.com>
|
||||||
|
|
||||||
* clutter/clutter-fixed.h:
|
* clutter/clutter-fixed.h:
|
||||||
|
@ -104,7 +104,7 @@ clutter_rectangle_paint (ClutterActor *self)
|
|||||||
cogl_rectangle (geom.width - priv->border_width,
|
cogl_rectangle (geom.width - priv->border_width,
|
||||||
priv->border_width,
|
priv->border_width,
|
||||||
priv->border_width,
|
priv->border_width,
|
||||||
geom.height - (2 * priv->border_width));
|
geom.height - priv->border_width);
|
||||||
|
|
||||||
cogl_rectangle (0, geom.height - priv->border_width,
|
cogl_rectangle (0, geom.height - priv->border_width,
|
||||||
geom.width - priv->border_width,
|
geom.width - priv->border_width,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user