diff options
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | draksnapshot-applet | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- applet: + o make notifications be more informative (#40360) + Version 0.10 - 9 May 2008, Thierry Vignaud - applet: diff --git a/draksnapshot-applet b/draksnapshot-applet index a44a1ba..5c46271 100755 --- a/draksnapshot-applet +++ b/draksnapshot-applet @@ -217,7 +217,7 @@ sub setState { gtkflush(); # so that bubbles are displayed on right icon if ($state{$state_type}{tt}[0] && $icon->isa('Gtk2::StatusIcon') && !$state{$state_type}{do_not_use_bubble}) { - my $bubble = Gtk2::Notify->new_with_status_icon(N("Warning"), formatAlaTeX(translate($state{$state_type}{tt}[0])) . "\n", + my $bubble = Gtk2::Notify->new_with_status_icon(N("Info"), formatAlaTeX(translate($state{$state_type}{tt}[0])) . "\n", '/usr/share/icons/draksnapshot.png', $icon); $bubble->set_timeout(5000); eval { $bubble->show }; |