diff options
author | csaba <csaba> | 2022-12-08 20:06:26 (GMT) |
---|---|---|
committer | csaba <csaba> | 2022-12-08 20:06:26 (GMT) |
commit | 6cf0e55f63630515b69df34ca664655da43f6aaa (patch) | |
tree | e24f14cabe6c1f0e1c5b72dfea1ba13340b906b6 /library/print.tcl | |
parent | 3db69bd3a23dfb6fae5abfcd28083f6450eafca5 (diff) | |
download | tk-6cf0e55f63630515b69df34ca664655da43f6aaa.zip tk-6cf0e55f63630515b69df34ca664655da43f6aaa.tar.gz tk-6cf0e55f63630515b69df34ca664655da43f6aaa.tar.bz2 |
Minor improvements related to the printer dialog
Diffstat (limited to 'library/print.tcl')
-rw-r--r-- | library/print.tcl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/library/print.tcl b/library/print.tcl index 5246229..8e6286f 100644 --- a/library/print.tcl +++ b/library/print.tcl @@ -803,9 +803,8 @@ namespace eval ::tk::print { # COPIES ttk::label $of.copiesl -text "[mc "Copies"] :" ttk::spinbox $of.copies -from 1 -to 1000 \ - -textvariable [myvar dlg::sel](copies) \ - -width 5 - grid $of.copiesl $of.copies -sticky ew -padx 3 -pady 3 + -textvariable [myvar dlg::sel](copies) + grid $of.copiesl $of.copies -sticky ew -padx 3 -pady 3 # PAPER SIZE ttk::label $of.paperl -text "[mc "Paper"] :" |