test-text-field: Use ActorBox methods for the border

Clamp to pixel and use get_size() when painting the border of the text
field.
This commit is contained in:
Emmanuele Bassi 2010-02-10 15:37:26 +00:00
parent 3fdb0a5950
commit 2670fc5871

View File

@ -12,8 +12,8 @@ on_entry_paint (ClutterActor *actor,
gfloat width, height;
clutter_actor_get_allocation_box (actor, &allocation);
width = allocation.x2 - allocation.x1;
height = allocation.y2 - allocation.y1;
clutter_actor_box_clamp_to_pixel (&allocation);
clutter_actor_box_get_size (&allocation, &width, &height);
cogl_set_source_color4ub (255, 255, 255, 255);
cogl_path_round_rectangle (0, 0, width, height, 4.0, 1.0);