summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xdraksnapshot-applet2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 828cbba..8459345 100644
--- a/NEWS
+++ b/NEWS
@@ -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 };