gtkmodelbutton: Ensure that accel label is always aligned to end

When the model button just has a text label and accel text,
the button fills and the accel label is implicitly aigned to end.
When there's also a icon, even though it's not shown (because
icons are only shown if there's no text), the button doesn't fill
and the accel ends up not aligned (assuming one of the other buttons
is longer). Ensure that the accel label is aligned to the end.

Fixes: https://gitlab.gnome.org/GNOME/gtk/-/issues/5504
This commit is contained in:
Corey Berla 2023-01-08 22:32:22 -08:00
parent 7edf8841fb
commit e20bc7723a

View File

@ -832,6 +832,8 @@ update_accel (GtkModelButton *self,
"css-name", "accelerator", "css-name", "accelerator",
NULL); NULL);
gtk_widget_insert_before (self->accel_label, GTK_WIDGET (self), NULL); gtk_widget_insert_before (self->accel_label, GTK_WIDGET (self), NULL);
gtk_widget_set_hexpand (self->accel_label, TRUE),
gtk_widget_set_halign (self->accel_label, GTK_ALIGN_END);
} }
gtk_accelerator_parse (accel, &key, &mods); gtk_accelerator_parse (accel, &key, &mods);