diff --git a/docs/labwc-config.5.scd b/docs/labwc-config.5.scd index 9b0f8291..d772edb3 100644 --- a/docs/labwc-config.5.scd +++ b/docs/labwc-config.5.scd @@ -363,7 +363,7 @@ this is for compatibility with Openbox. *unshade* [yes|no] Temporarily unshade windows when switching between them and permanently unshade on the final selection. Default is yes. -** +** *show* [yes|no] Draw the OnScreenDisplay when switching between windows. Default is yes. diff --git a/src/config/rcxml.c b/src/config/rcxml.c index dc11b1c8..ed51e20d 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -1235,7 +1235,7 @@ entry(xmlNode *node, char *nodename, char *content) } else if (!strcasecmp(nodename, "show.windowSwitcher")) { set_bool(content, &rc.window_switcher.show); wlr_log(WLR_ERROR, " is deprecated." - " Use "); + " Use "); } else if (!strcasecmp(nodename, "style.windowSwitcher")) { if (!strcasecmp(content, "classic")) { rc.window_switcher.style = CYCLE_OSD_STYLE_CLASSIC; @@ -1243,7 +1243,7 @@ entry(xmlNode *node, char *nodename, char *content) rc.window_switcher.style = CYCLE_OSD_STYLE_THUMBNAIL; } wlr_log(WLR_ERROR, " is deprecated." - " Use "); + " Use "); } else if (!strcasecmp(nodename, "preview.windowSwitcher")) { set_bool(content, &rc.window_switcher.preview);