Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2005-05-09 21:27:17 (GMT)
committer Martin Kretzschmar <martink@src.gnome.org>2005-05-09 21:27:17 (GMT)
commit85c23b189d1c83d7c84774b4ecc09334316ca143 (patch)
tree9e751e7164f844f42d27c62185291f4fecef7945 /shell
parent85e8550cd9369f7c3fa9bfea0018007c25e2063b (diff)
LPD printers use postscript, too
2005-05-09 Juerg Billeter <j@bitron.ch> * shell/ev-window.c: (using_postscript_printer): LPD printers use postscript, too
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c2
1 files changed, 2 insertions, 0 deletions
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;