diff options
| author | 2009-12-04 14:11:58 +0000 | |
|---|---|---|
| committer | 2009-12-04 14:11:58 +0000 | |
| commit | 84d19e6cd30de45381f5f04dedaeff512068aa7a (patch) | |
| tree | 5cb1ef8c0d18c893d8c8e7185ebab4c7d45a4fd1 | |
| parent | workaround for python freeze on module unloading (mingw32) (diff) | |
| download | KVIrc-84d19e6cd30de45381f5f04dedaeff512068aa7a.tar.gz KVIrc-84d19e6cd30de45381f5f04dedaeff512068aa7a.tar.bz2 KVIrc-84d19e6cd30de45381f5f04dedaeff512068aa7a.zip | |
avoid an error message on popups for dead channels
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3665 17fca916-40b9-46aa-a4ea-0a15b648b75c
| -rw-r--r-- | data/defscript/popups.kvs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/defscript/popups.kvs b/data/defscript/popups.kvs index 6fd04c41d..7c1514900 100644 --- a/data/defscript/popups.kvs +++ b/data/defscript/popups.kvs @@ -73,7 +73,7 @@ defpopup(channelhighlight) { prologue { - if($window!=""){ + if($window!="" && !$chan.isDead()){ %:beingHlTmp = $tmphighlight.isChannelHighLighted($window) } } |
