summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-03-28 17:28:22 +0000
committerThierry Vignaud <tv@mageia.org>2013-03-28 17:28:22 +0000
commita429ff80eb3a736e8eedf20200770aaf0b095610 (patch)
treef0c82af2bba0cf9668dfe1fd7d639c4621150fbd
parenta2ca723145461d48beee1fa680626d7cb06b4edf (diff)
downloaddrakx-backup-do-not-use-a429ff80eb3a736e8eedf20200770aaf0b095610.tar
drakx-backup-do-not-use-a429ff80eb3a736e8eedf20200770aaf0b095610.tar.gz
drakx-backup-do-not-use-a429ff80eb3a736e8eedf20200770aaf0b095610.tar.bz2
drakx-backup-do-not-use-a429ff80eb3a736e8eedf20200770aaf0b095610.tar.xz
drakx-backup-do-not-use-a429ff80eb3a736e8eedf20200770aaf0b095610.zip
do not show notification bubble in net_applet
rationale: they make it to segfault (mga#9102)
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/ugtk2.pm3
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 364851bc3..09875d522 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- do not show notification bubble in net_applet as they make it to
+ segfault (mga#9102)
- recognize more webcam & bluetooth devices (might help mga#5841)
Version 15.28 - 21 March 2013
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index dbfcfc8ff..3db9ff814 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -1623,7 +1623,8 @@ sub show {
$info->{timeout}->() if $info->{timeout};
$self->process_next;
});
- eval { $notification->show };
+ # this makes net_applet to segfault (mga#9102):
+ #eval { $notification->show };
}
1;