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.
This commit is contained in:
Richard Grenville
2012-09-26 19:48:36 +08:00
parent 606e2d7061
commit 8c0379180b
3 changed files with 18 additions and 2 deletions

View File

@ -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;