From c0d142cfb87c7dfeffe3443633a9526a468e3cef Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Sat, 11 Mar 2023 21:29:17 +0000 Subject: [PATCH] config: enable windowSwitcher preview by default --- docs/labwc-config.5.scd | 2 +- docs/rc.xml.all | 2 +- src/config/rcxml.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/labwc-config.5.scd b/docs/labwc-config.5.scd index 5532a041..1b61d385 100644 --- a/docs/labwc-config.5.scd +++ b/docs/labwc-config.5.scd @@ -82,7 +82,7 @@ The rest of this man page describes configuration options. windows. Default is yes. *preview* [yes|no] Preview the contents of the selected window when - switching between windows. Default is no. + switching between windows. Default is yes. *outlines* [yes|no] Draw an outline around the selected window when switching between windows. Default is yes. diff --git a/docs/rc.xml.all b/docs/rc.xml.all index 716ac795..f1558d4b 100644 --- a/docs/rc.xml.all +++ b/docs/rc.xml.all @@ -12,7 +12,7 @@ 0 no no - + diff --git a/src/config/rcxml.c b/src/config/rcxml.c index d2052b6f..53a95e45 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -588,7 +588,7 @@ rcxml_init(void) rc.snap_edge_range = 1; rc.snap_top_maximize = true; rc.cycle_view_osd = true; - rc.cycle_preview_contents = false; + rc.cycle_preview_contents = true; rc.cycle_preview_outlines = true; rc.workspace_config.popuptime = INT_MIN; }