diff options
author | Richard Grenville <[email protected]> | 2014-04-19 21:52:20 +0800 |
---|---|---|
committer | Richard Grenville <[email protected]> | 2014-04-19 21:52:20 +0800 |
commit | 5794e0988f13a75e15812930f70795c5f38449e0 (patch) | |
tree | d9169096bec4a4ab0469e1a6ce2ef47fc565ef99 /compton.h | |
parent | b175464e8c88cc911dcc11198f247fa47c9586a5 (diff) | |
download | tdebase-5794e0988f13a75e15812930f70795c5f38449e0.tar.gz tdebase-5794e0988f13a75e15812930f70795c5f38449e0.zip |
Bug fix #190: Copy shadow/fade state from last paint on unmapped wins
Copy shadow/fade/color-inversion/background-blur state from last paint
on unmapped windows. I hope it doesn't have unexpected side effects.
(#190)
Diffstat (limited to 'compton.h')
-rw-r--r-- | compton.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -832,12 +832,21 @@ static void win_update_prop_shadow(session_t *ps, win *w); static void +win_set_shadow(session_t *ps, win *w, bool shadow_new); + +static void win_determine_shadow(session_t *ps, win *w); static void +win_set_invert_color(session_t *ps, win *w, bool invert_color_new); + +static void win_determine_invert_color(session_t *ps, win *w); static void +win_set_blur_background(session_t *ps, win *w, bool blur_background_new); + +static void win_determine_blur_background(session_t *ps, win *w); static void |