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:
Matthias Clasen 2005-02-28 04:33:42 +00:00 committed by Matthias Clasen
parent c78b24e7d3
commit 0a206df7e9
4 changed files with 10 additions and 1 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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;