diff options
-rw-r--r-- | perl-install/printer/printerdrake.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/printer/printerdrake.pm b/perl-install/printer/printerdrake.pm index 27edd9957..4305c81d0 100644 --- a/perl-install/printer/printerdrake.pm +++ b/perl-install/printer/printerdrake.pm @@ -2603,6 +2603,9 @@ You should make sure that the page size and the ink type/printing mode (if avail my $i; my @oldgroup = ("", ""); for ($i = 0; $i <= $#{$printer->{ARGS}}; $i++) { + # Do not show hidden options (member options of a forced + # composite option) + next if $printer->{ARGS}[$i]{hidden}; my $optshortdefault = $printer->{ARGS}[$i]{default}; # Should the option only show when the "Advanced" button was # clicked? |