Bug 1310804 - Limit Mac remote printing to Nightly; r=bobowen draft
authorHaik Aftandilian <haftandilian@mozilla.com>
Mon, 17 Oct 2016 09:23:30 -0700
changeset 426533 711a490e9735747f203bcc713e6dc2d0a84efc6a
parent 426004 7c8216f48c38a8498f251fe044509b930af44de6
child 534196 3e2fac46e394caf82a84b8acb936625008f83a4a
push id32727
push userhaftandilian@mozilla.com
push dateTue, 18 Oct 2016 16:20:55 +0000
reviewersbobowen
bugs1310804
milestone52.0a1
Bug 1310804 - Limit Mac remote printing to Nightly; r=bobowen MozReview-Commit-ID: 3zlQNvLtjKi
modules/libpref/init/all.js
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -1112,17 +1112,20 @@ pref("print.print_unwriteable_margin_bot
 // This is used by both Printing and Print Preview
 // Units are in 1/100ths of an inch.
 pref("print.print_edge_top", 0);
 pref("print.print_edge_left", 0);
 pref("print.print_edge_right", 0);
 pref("print.print_edge_bottom", 0);
 
 // Print via the parent process. This is only used when e10s is enabled.
-#if defined(XP_WIN) || defined(XP_MACOSX)
+// For Mac, limit to Nightly.
+#if defined(XP_WIN)
+pref("print.print_via_parent", true);
+#elif defined(XP_MACOSX) && defined(NIGHTLY_BUILD)
 pref("print.print_via_parent", true);
 #else
 pref("print.print_via_parent", false);
 #endif
 
 // Pref used by the spellchecker extension to control the
 // maximum number of misspelled words that will be underlined
 // in a document.