Closed
Bug 67537
Opened 24 years ago
Closed 24 years ago
Print selection/pages doesn't work
Categories
(Core :: Printing: Output, defect)
Tracking
()
VERIFIED
FIXED
People
(Reporter: burnus, Assigned: rods)
Details
This is with 2001-02-02-21/Linux. This is a regression since 2001-02-01-21.
Yesterday I was able to print a page range or a selection, today it isn't
working anymore.
Assignee | ||
Comment 1•24 years ago
|
||
Patch:
Index: resources/content/unix/printdialog.js
===================================================================
RCS file: /cvsroot/mozilla/xpfe/global/resources/content/unix/printdialog.js,v
retrieving revision 1.6
diff -u -r1.6 printdialog.js
--- printdialog.js 2001/02/06 23:03:17 1.6
+++ printdialog.js 2001/02/06 23:54:31
@@ -361,11 +361,11 @@
var printtype;
if (dialog.allpagesRadio.checked) {
- printtype = gPrintOptInterface.kRangeAllPages;
+ printService.printRange = gPrintOptInterface.kRangeAllPages;
} else if (dialog.rangeRadio.checked) {
- printtype = gPrintOptInterface.kRangeSpecifiedPageRange;
+ printService.printRange = gPrintOptInterface.kRangeSpecifiedPageRange;
} else if (dialog.selectionRadio.checked) {
- printtype = gPrintOptInterface.kRangeSelection;
+ printService.printRange = gPrintOptInterface.kRangeSelection;
}
printService.startPageRange = dialog.frompageInput.value;
printService.endPageRange = dialog.topageInput.value;
Status: NEW → ASSIGNED
Comment 2•24 years ago
|
||
Assignee | ||
Comment 3•24 years ago
|
||
dcone reviewed it, he is just a little slow getting the r= in
fixed
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
Tobias, is this working for you now, if so please mark verified-fixed...
Reporter | ||
Comment 5•23 years ago
|
||
I have presently a very limited internet access. So you need either to wait
until 1st of july or find someone else for closing. (I can still reopen this if
needed.)
You need to log in
before you can comment on or make changes to this bug.
Description
•