]> git.mdlowis.com Git - proto/labwc.git/commitdiff
rcxml: minor updates for deprecation message
authortokyo4j <hrak1529@gmail.com>
Thu, 11 Dec 2025 18:58:51 +0000 (03:58 +0900)
committerHiroaki Yamamoto <hrak1529@gmail.com>
Fri, 12 Dec 2025 06:57:43 +0000 (15:57 +0900)
src/config/rcxml.c

index eacd3d6459e546e40fccfc3d921abc6965fe5538..cc74422844731589a7a6901c6bbbb898034a8338 100644 (file)
@@ -1226,7 +1226,7 @@ entry(xmlNode *node, char *nodename, char *content)
                } else if (!strcasecmp(content, "thumbnail")) {
                        rc.window_switcher.style = CYCLE_OSD_STYLE_THUMBNAIL;
                } else {
-                       wlr_log(WLR_ERROR, "Invalid windowSwitcher style %s: "
+                       wlr_log(WLR_ERROR, "Invalid windowSwitcher style '%s': "
                                "should be one of classic|thumbnail", content);
                }
        } else if (!strcasecmp(nodename, "output.osd.windowSwitcher")) {
@@ -1237,7 +1237,7 @@ entry(xmlNode *node, char *nodename, char *content)
                } else if (!strcasecmp(content, "focused")) {
                        rc.window_switcher.output_criteria = CYCLE_OSD_OUTPUT_FOCUSED;
                } else {
-                       wlr_log(WLR_ERROR, "Invalid windowSwitcher output %s: "
+                       wlr_log(WLR_ERROR, "Invalid windowSwitcher output '%s': "
                                "should be one of all|focused|cursor", content);
                }
        } else if (!strcasecmp(nodename, "order.windowSwitcher")) {
@@ -1246,7 +1246,7 @@ entry(xmlNode *node, char *nodename, char *content)
                } else if (!strcasecmp(content, "age")) {
                        rc.window_switcher.order = WINDOW_SWITCHER_ORDER_AGE;
                } else {
-                       wlr_log(WLR_ERROR, "Invalid windowSwitcher order %s: "
+                       wlr_log(WLR_ERROR, "Invalid windowSwitcher order '%s': "
                                "should be one of focus|age", content);
                }