diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-04-13 02:14:39 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-04-14 02:27:28 +0200 |
commit | d755b94c26ffc7c889cf7813842d918460d00cdb (patch) | |
tree | eb7fd54e3ac488634f6a217d94cb6ed140e378b8 /twin | |
parent | 2b0e13211cc2ce86926cfe133ce29df3a6141e91 (diff) | |
download | tdebase-d755b94c26ffc7c889cf7813842d918460d00cdb.tar.gz tdebase-d755b94c26ffc7c889cf7813842d918460d00cdb.zip |
Update all windows when compton settings are reloaded
(cherry picked from commit ec96d63e30bfdf330ad34905c0e9306145a9f312)
Diffstat (limited to 'twin')
-rw-r--r-- | twin/compton-tde/compton.c | 5 |
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); + } } } |