mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 05:03:03 +01:00
Avoiding conditional directives that split up parts os statements
This commit is contained in:
parent
1feffcc2f0
commit
fd6432c727
12
src/notify.c
12
src/notify.c
@ -234,17 +234,17 @@ void* do_playing(void* _p)
|
||||
}
|
||||
|
||||
bool has_looping = false;
|
||||
bool test_active_notify = false;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < ACTIVE_NOTIFS_MAX; i ++) {
|
||||
|
||||
if (actives[i].looping) has_looping = true;
|
||||
|
||||
if (actives[i].active && !actives[i].looping
|
||||
#ifdef BOX_NOTIFY
|
||||
&& !actives[i].box
|
||||
#endif
|
||||
) {
|
||||
test_active_notify = actives[i].active && !actives[i].looping;
|
||||
#ifdef BOX_NOTIFY
|
||||
test_active_notify = test_active_notify && !actives[i].box;
|
||||
#endif
|
||||
if (test_active_notify) {
|
||||
if(actives[i].id_indicator)
|
||||
*actives[i].id_indicator = -1; /* reset indicator value */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user