combobox: fix cell area allocation in menu mode for RTL

We were missing a padding to subtract from the child widget here.
This commit is contained in:
Cosimo Cecchi 2012-01-31 20:18:09 -05:00
parent aa16f469bc
commit 26ff536069

View File

@ -2610,7 +2610,7 @@ gtk_combo_box_size_allocate (GtkWidget *widget,
{
child.x += req.width;
child.width = allocation->x + allocation->width
- border_width - child.x;
- border_width - child.x - button_padding.right;
}
else
{