summaryrefslogtreecommitdiff
path: root/gtk/gtkprinteroptionwidget.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2009-09-09 11:52:07 -0400
committerMatthias Clasen <mclasen@redhat.com>2009-09-09 11:52:07 -0400
commit3dd459caea597abc776b3052353372938748bbe4 (patch)
treeb96d439409d01a753d6b538c832981035ee54c62 /gtk/gtkprinteroptionwidget.c
parentaa9bb7d8e4cf9ef9d47f6dad6aa9deb2f30723a1 (diff)
downloadgtk+-3dd459caea597abc776b3052353372938748bbe4.tar.gz
Accept "true" as a true value in printer settings
Some of the settings come directly from cups config files, which have no case sensitivity requirement, so we should not be more picky. Bug 594652.
Diffstat (limited to 'gtk/gtkprinteroptionwidget.c')
-rw-r--r--gtk/gtkprinteroptionwidget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprinteroptionwidget.c b/gtk/gtkprinteroptionwidget.c
index d91b51c591..468768fb33 100644
--- a/gtk/gtkprinteroptionwidget.c
+++ b/gtk/gtkprinteroptionwidget.c
@@ -854,7 +854,7 @@ update_widgets (GtkPrinterOptionWidget *widget)
switch (source->type)
{
case GTK_PRINTER_OPTION_TYPE_BOOLEAN:
- if (strcmp (source->value, "True") == 0)
+ if (g_ascii_strcasecmp (source->value, "True") == 0)
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->check), TRUE);
else
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->check), FALSE);