summaryrefslogtreecommitdiffstats
path: root/compton.h
diff options
context:
space:
mode:
authorRichard Grenville <pyxlcy@gmail.com>2012-09-26 19:48:36 +0800
committerRichard Grenville <pyxlcy@gmail.com>2012-09-26 19:48:36 +0800
commit10ede8999852630fd375f3eb11e501f0e60eee4e (patch)
tree1a8422fdb69fdaa457b5a61581c434e5b272e7d3 /compton.h
parent60f724a30a4814095bb219433f704d099ad46ebb (diff)
downloadtdebase-10ede8999852630fd375f3eb11e501f0e60eee4e.tar.gz
tdebase-10ede8999852630fd375f3eb11e501f0e60eee4e.zip
Bug fix: Issue #46: Optionally mark override-redirect windows as active
Attempt to fix the transparency issue of Firefox and Chromium location bar dropdown window by marking override_redirect windows as active. This may not work completely and could have other side effects. Experimental. Enable by using --mark-ovredir-focused.
Diffstat (limited to 'compton.h')
-rw-r--r--compton.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/compton.h b/compton.h
index 77166a666..f785981e9 100644
--- a/compton.h
+++ b/compton.h
@@ -246,6 +246,8 @@ typedef struct _options {
char *display;
/// Whether to try to detect WM windows and mark them as focused.
Bool mark_wmwin_focused;
+ /// Whether to mark override-redirect windows as focused.
+ Bool mark_ovredir_focused;
/// Whether to fork to background.
Bool fork_after_register;
Bool synchronize;