From f2be08822fb3acee618b09faeb76577ffe6ad0bd Mon Sep 17 00:00:00 2001 From: tokyo4j Date: Thu, 29 May 2025 04:50:51 +0900 Subject: [PATCH] osd: always show output name with Before this patch, output names were not shown if there's only one output. --- src/osd-field.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/osd-field.c b/src/osd-field.c index 33cf2a79..9eec0837 100644 --- a/src/osd-field.c +++ b/src/osd-field.c @@ -330,8 +330,7 @@ osd_field_arg_from_xml_node(struct window_switcher_field *field, } else if (!strcmp(content, "state")) { field->content = LAB_FIELD_WIN_STATE; } else if (!strcmp(content, "output")) { - /* Keep old defaults */ - field->content = LAB_FIELD_OUTPUT_SHORT; + field->content = LAB_FIELD_OUTPUT; } else if (!strcmp(content, "custom")) { field->content = LAB_FIELD_CUSTOM; } else {