From 19f4036d8af36173baebc2692068b0c5f7cfcca8 Mon Sep 17 00:00:00 2001 From: Ryan Voots <simcop2387@simcop2387.info> Date: Mon, 16 Jul 2012 19:04:25 -0400 Subject: [PATCH] Time here is in milliseconds, setting it to 1500 to make it stay for at least 1.5 seconds. --- 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 df011e910..5e2bc6fb1 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, [], {}, 5); + $notifier->Notify('Slic3r', 0, $self->{icon}, $title, $message, [], {}, 1500); } }; }