diff options
Diffstat (limited to 'perl-install/services.pm')
-rw-r--r-- | perl-install/services.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/services.pm b/perl-install/services.pm index d25855102..cfc560605 100644 --- a/perl-install/services.pm +++ b/perl-install/services.pm @@ -201,7 +201,7 @@ sub ask_standalone_gtk { my $update_service = sub { my $started = -e "/var/lock/subsys/$_[0]"; my $action = $started ? "stop" : "start"; - $_[1]->set($started ? N("running") : N("stopped")); + $_[1]->set_label($started ? N("running") : N("stopped")); $started, $action; }; my $b = Gtk2::EventBox->new; |