diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-04-13 10:30:00 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-04-13 10:30:00 +0100 |
commit | b117c3b81217a11946ac784cfbe2ef1f3725b207 (patch) | |
tree | 196cc4a27cb75def4466d418cb91dd3fcfdfbf5b /notify.c | |
parent | 52e3d960e7ebe2006509d48c427ffd8f25a0cf52 (diff) | |
parent | c20eb0c0ae3347c768894a6355adfd7ebae6f2f3 (diff) | |
download | rtmux-b117c3b81217a11946ac784cfbe2ef1f3725b207.tar.gz rtmux-b117c3b81217a11946ac784cfbe2ef1f3725b207.tar.bz2 rtmux-b117c3b81217a11946ac784cfbe2ef1f3725b207.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'notify.c')
-rw-r--r-- | notify.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -75,6 +75,14 @@ notify_insert_hook(struct cmdq_item *item, struct notify_entry *ne) else oo = fs.s->options; o = options_get(oo, ne->name); + if (o == NULL && fs.wp != NULL) { + oo = fs.wp->options; + o = options_get(oo, ne->name); + } + if (o == NULL && fs.wl != NULL) { + oo = fs.wl->window->options; + o = options_get(oo, ne->name); + } if (o == NULL) return; |