forked from AuroraMiddleware/gtk
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:
parent
aa16f469bc
commit
26ff536069
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user