summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTill Kamppeter <tkamppeter@mandriva.com>2006-01-09 16:25:43 +0000
committerTill Kamppeter <tkamppeter@mandriva.com>2006-01-09 16:25:43 +0000
commit70002b40da8ccd8f2cae49f490df12c86f422be4 (patch)
treeb4116a3061d8619965f62506965dd2146c7b61e3
parent6995ffdb764920825a83d46c4a84cb88d5b26e58 (diff)
downloaddrakx-70002b40da8ccd8f2cae49f490df12c86f422be4.tar
drakx-70002b40da8ccd8f2cae49f490df12c86f422be4.tar.gz
drakx-70002b40da8ccd8f2cae49f490df12c86f422be4.tar.bz2
drakx-70002b40da8ccd8f2cae49f490df12c86f422be4.tar.xz
drakx-70002b40da8ccd8f2cae49f490df12c86f422be4.zip
- Moved button for daemon-less CUPS client mode to the top of the CUPS
configuration dialog, to make it more visible, so that the user sees more easily when he has activated this mode accidentally.
-rw-r--r--perl-install/printer/printerdrake.pm24
1 files changed, 12 insertions, 12 deletions
diff --git a/perl-install/printer/printerdrake.pm b/perl-install/printer/printerdrake.pm
index ac490695a..00366306c 100644
--- a/perl-install/printer/printerdrake.pm
+++ b/perl-install/printer/printerdrake.pm
@@ -69,6 +69,18 @@ sub config_cups {
N("You can also decide here whether printers on remote machines should be automatically made available on this machine."),
},
[
+ { val => N("Remote CUPS server and no local CUPS daemon") .
+ ": " .
+ ($daemonless_cups ?
+ N("On") . "; " . N("Server") . ": " .
+ $remote_cups_server :
+ N("Off")),
+ help => N("In this mode the local CUPS daemon will be stopped and all printing requests go directly to the server specified below. Note that it is not possible to define local print queues then and if the specified server is down it cannot be printed at all from this machine."),
+ type => 'button',
+ clicked_may_quit => sub {
+ $buttonclicked = "daemonlesscups";
+ 1;
+ } },
{ text => N("The printers on this machine are available to other computers"), type => 'bool',
val => \$printer->{cupsconfig}{localprintersshared},
disabled => sub {
@@ -135,18 +147,6 @@ If some of these measures lead to problems for you, turn this option off, but th
disabled => sub {
$daemonless_cups;
} }),
- { val => N("Remote CUPS server and no local CUPS daemon") .
- ": " .
- ($daemonless_cups ?
- N("On") . "; " . N("Server") . ": " .
- $remote_cups_server :
- N("Off")),
- help => N("In this mode the local CUPS daemon will be stopped and all printing requests go directly to the server specified below. Note that it is not possible to define local print queues then and if the specified server is down it cannot be printed at all from this machine."),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "daemonlesscups";
- 1;
- } },
]
)
) {