diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | mgaapplet | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ - include strings from mgaapplet-update-checker & mgaapplet-upgrade-helper - restore old translations - fix some gtk2 -> gtk3 migration fallouts (mga#12527) +- fix crashing if there's not notification daemon (mga#12416) Version 3.9 - 25 January 2014, Colin Guthrie @@ -693,7 +693,7 @@ sub setState { $bubble->set_urgency($state{$state}{urgency}) if $state{$state}{urgency}; my $timeout = 5000; $bubble->set_timeout($timeout); - Glib::Timeout->add($timeout, sub { $bubble->close; 0 }); + Glib::Timeout->add($timeout, sub { eval { $bubble->close }; 0 }); eval { $bubble->show }; warn ">> ERR:$@" if $@; } |