From de47f5fe72477146d981799b73a7e3bfdc35270e Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Tue, 17 Jul 2012 15:38:53 +0200 Subject: [PATCH] Use default desktop notification timeout. --- lib/Slic3r/GUI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI.pm b/lib/Slic3r/GUI.pm index 5e2bc6fb1..ec1bb5ba0 100644 --- a/lib/Slic3r/GUI.pm +++ b/lib/Slic3r/GUI.pm @@ -354,7 +354,7 @@ sub notify { my $serv = $session->get_service('org.freedesktop.Notifications'); my $notifier = $serv->get_object('/org/freedesktop/Notifications', 'org.freedesktop.Notifications'); - $notifier->Notify('Slic3r', 0, $self->{icon}, $title, $message, [], {}, 1500); + $notifier->Notify('Slic3r', 0, $self->{icon}, $title, $message, [], {}, -1); } }; }