diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-03-28 17:28:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-03-28 17:28:22 +0000 |
commit | e9760aaeb93c9a1f136f403a15c0eef6313979ac (patch) | |
tree | f0c82af2bba0cf9668dfe1fd7d639c4621150fbd /perl-install/ugtk2.pm | |
parent | bbabe9dafc39564a243ef7ef5bca3494134e2391 (diff) | |
download | drakx-e9760aaeb93c9a1f136f403a15c0eef6313979ac.tar drakx-e9760aaeb93c9a1f136f403a15c0eef6313979ac.tar.gz drakx-e9760aaeb93c9a1f136f403a15c0eef6313979ac.tar.bz2 drakx-e9760aaeb93c9a1f136f403a15c0eef6313979ac.tar.xz drakx-e9760aaeb93c9a1f136f403a15c0eef6313979ac.zip |
do not show notification bubble in net_applet
rationale: they make it to segfault (mga#9102)
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 3 |
1 files changed, 2 insertions, 1 deletions
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; |