summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-02-22 18:02:53 +0000
committerThierry Vignaud <tv@mandriva.org>2008-02-22 18:02:53 +0000
commitd10c27caee07720ee0145a0a20da07919448e898 (patch)
tree424fb5ae968364957961e3f0ad3af7dac655ec5f
parent51ba86c170afb8f17897fe1cbcd108f07b432e79 (diff)
downloaddrakx-net-d10c27caee07720ee0145a0a20da07919448e898.tar
drakx-net-d10c27caee07720ee0145a0a20da07919448e898.tar.gz
drakx-net-d10c27caee07720ee0145a0a20da07919448e898.tar.bz2
drakx-net-d10c27caee07720ee0145a0a20da07919448e898.tar.xz
drakx-net-d10c27caee07720ee0145a0a20da07919448e898.zip
make expose_event callback more robust (#36537)
-rw-r--r--NEWS3
-rwxr-xr-xbin/net_monitor1
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 32480ee..69a6ff9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- net_monitor:
+ o make expose_event callback more robust (#36537)
+
0.25:
- draksambashare (aginies):
o fix typo, fix inherit permission problem, re-order some share options
diff --git a/bin/net_monitor b/bin/net_monitor
index a93fea2..659df33 100755
--- a/bin/net_monitor
+++ b/bin/net_monitor
@@ -432,6 +432,7 @@ sub update() {
gtkset($measure_t, text => formatXiB($transmitted));
});
$darea->{$intf}->signal_connect(expose_event => sub {
+ return if !$darea->{$intf}->window;
$darea->{$intf}->window->draw_drawable($darea->{$intf}->style->bg_gc('normal'), $pixmap->{$intf}, 0, 0, 0, 0, $width, $height);
});
$gc_lines->{$intf} = Gtk2::Gdk::GC->new($darea->{$intf}->window);