diff options
| author | 2016-04-27 09:21:36 +0100 | |
|---|---|---|
| committer | 2016-04-27 09:21:36 +0100 | |
| commit | ac1e4d82c9daa040af03330507ff6ee7eb77b654 (patch) | |
| tree | 5b580f3cc58cd89d31b5c8362a1677ab656c7ccf /data/defscript | |
| parent | KvsObject_layout: minor indenting + spacing cleanup (diff) | |
| download | KVIrc-ac1e4d82c9daa040af03330507ff6ee7eb77b654.tar.gz KVIrc-ac1e4d82c9daa040af03330507ff6ee7eb77b654.tar.bz2 KVIrc-ac1e4d82c9daa040af03330507ff6ee7eb77b654.zip | |
events: fix handler name should have no spaces
once loaded if these events handler names have spaces they are eaten by hungry KVIrc internals.
Im also pretty sure it cant have non-alpha chars as they were removed from my quick tests here.
thx @AndrioCelos for tip
Diffstat (limited to 'data/defscript')
| -rw-r--r-- | data/defscript/events.kvs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/defscript/events.kvs b/data/defscript/events.kvs index 7abd1881d..62964de95 100644 --- a/data/defscript/events.kvs +++ b/data/defscript/events.kvs @@ -117,7 +117,7 @@ event(OnURLLinkClick,default) openurl $0 } -event(OnURLLinkPopupRequest,URL popup) +event(OnURLLinkPopupRequest,URLpopup) { popup.show urlpopup $0 } |
