forked from AuroraMiddleware/gtk
Fix a problem with entry gadgets
place_windows is accessing the gadgets allocation, so make sure to allocate the gadget before calling it.
This commit is contained in:
parent
fab31e16ed
commit
2e25407638
@ -3777,6 +3777,13 @@ gtk_entry_size_allocate (GtkWidget *widget,
|
|||||||
|
|
||||||
gtk_widget_set_allocation (widget, allocation);
|
gtk_widget_set_allocation (widget, allocation);
|
||||||
|
|
||||||
|
gtk_css_gadget_allocate (entry->priv->gadget,
|
||||||
|
allocation,
|
||||||
|
gtk_widget_get_allocated_baseline (widget),
|
||||||
|
&clip);
|
||||||
|
|
||||||
|
gtk_widget_set_clip (widget, &clip);
|
||||||
|
|
||||||
if (gtk_widget_get_realized (widget))
|
if (gtk_widget_get_realized (widget))
|
||||||
{
|
{
|
||||||
GtkEntryCompletion *completion;
|
GtkEntryCompletion *completion;
|
||||||
@ -3788,13 +3795,6 @@ gtk_entry_size_allocate (GtkWidget *widget,
|
|||||||
if (completion)
|
if (completion)
|
||||||
_gtk_entry_completion_resize_popup (completion);
|
_gtk_entry_completion_resize_popup (completion);
|
||||||
}
|
}
|
||||||
|
|
||||||
gtk_css_gadget_allocate (entry->priv->gadget,
|
|
||||||
allocation,
|
|
||||||
gtk_widget_get_allocated_baseline (widget),
|
|
||||||
&clip);
|
|
||||||
|
|
||||||
gtk_widget_set_clip (widget, &clip);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user