summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-04-13 02:14:39 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-04-13 02:14:39 -0500
commitec96d63e30bfdf330ad34905c0e9306145a9f312 (patch)
treed0e94b22fabe4581fd4355940dc96e96f7bae589
parent78d33c29157b8e3a0b81c36f73ec5f958439565c (diff)
downloadtdebase-ec96d63e.tar.gz
tdebase-ec96d63e.zip
Update all windows when compton settings are reloaded
-rw-r--r--twin/compton-tde/compton.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/twin/compton-tde/compton.c b/twin/compton-tde/compton.c
index 30537b786..0c1b056ee 100644
--- a/twin/compton-tde/compton.c
+++ b/twin/compton-tde/compton.c
@@ -218,6 +218,11 @@ void handle_siguser (int sig)
init_alpha_picts(ps_g);
init_filters(ps_g);
+
+ /* Force update for all mapped windows */
+ for (win *w = ps_g->list; w; w = w->next) {
+ win_on_wtype_change(ps_g, w);
+ }
}
}