mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Fix a typo. (#168646, Vincent Untz)
2005-02-27 Matthias Clasen <mclasen@redhat.com> * gtk/gtklabel.c (gtk_label_size_request): Fix a typo. (#168646, Vincent Untz)
This commit is contained in:
parent
c78b24e7d3
commit
0a206df7e9
@ -1,5 +1,8 @@
|
||||
2005-02-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtklabel.c (gtk_label_size_request): Fix a typo.
|
||||
(#168646, Vincent Untz)
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (save_folder_combo_create):
|
||||
Unset "focus-on-click" for the save folder combo. (#168688,
|
||||
Sven Neumann)
|
||||
|
@ -1,5 +1,8 @@
|
||||
2005-02-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtklabel.c (gtk_label_size_request): Fix a typo.
|
||||
(#168646, Vincent Untz)
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (save_folder_combo_create):
|
||||
Unset "focus-on-click" for the save folder combo. (#168688,
|
||||
Sven Neumann)
|
||||
|
@ -1,5 +1,8 @@
|
||||
2005-02-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtklabel.c (gtk_label_size_request): Fix a typo.
|
||||
(#168646, Vincent Untz)
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (save_folder_combo_create):
|
||||
Unset "focus-on-click" for the save folder combo. (#168688,
|
||||
Sven Neumann)
|
||||
|
@ -2018,7 +2018,7 @@ gtk_label_size_request (GtkWidget *widget,
|
||||
priv->width_chars > 0 || priv->max_width_chars > 0) &&
|
||||
aux_info && aux_info->width > 0)
|
||||
width += aux_info->width;
|
||||
else if (label->ellipsize || priv->width_chars > 0 || priv->width_chars > 0)
|
||||
else if (label->ellipsize || priv->width_chars > 0 || priv->max_width_chars > 0)
|
||||
{
|
||||
PangoContext *context;
|
||||
PangoFontMetrics *metrics;
|
||||
|
Loading…
Reference in New Issue
Block a user