Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--shell/ev-window.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 16a5f1e..2529d2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-05-09 Juerg Billeter <j@bitron.ch>
+
+ * shell/ev-window.c: (using_postscript_printer):
+
+ LPD printers use postscript, too
+
2005-05-09 Marco Pesenti Gritti <mpg@redhat.com>
* shell/ev-window.c: (register_custom_actions):
diff --git a/shell/ev-window.c b/shell/ev-window.c
index d9b4740..eeeb97b 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -1022,6 +1022,8 @@ using_postscript_printer (GnomePrintConfig *config)
} else if (transport) {
if (!strcmp ((const gchar *)transport, "CUPS"))
return TRUE;
+ else if (!strcmp ((const gchar *)transport, "LPD"))
+ return TRUE;
}
return FALSE;