Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
output: Add option to preview the contents of the current cycle_view
Add the 'cycleViewPreview.core' option to rc.xml to enable previews of the selected view when cycling between windows. Default this option to be disabled to match current behavior.
- Loading branch information
1 parent
8e9643a
commit 8baa0ee825371f197ad532ba23f2e1c8a53cff61
Showing
5 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -11,6 +11,7 @@ | ||
<decoration>server</decoration> | ||
<gap>0</gap> | ||
<adaptiveSync>no</adaptiveSync> | ||
<cycleViewPreview>no</cycleViewPreview> | ||
</core> | ||
|
||
<!-- | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -48,6 +48,9 @@ struct rcxml { | ||
/* window snapping */ | ||
int snap_edge_range; | ||
bool snap_top_maximize; | ||
|
||
/* cycle view (alt+tab) */ | ||
bool cycle_preview_contents; | ||
}; | ||
|
||
extern struct rcxml rc; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters