From: tokyo4j Date: Wed, 28 May 2025 19:50:51 +0000 (+0900) Subject: osd: always show output name with X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=f2be08822fb3acee618b09faeb76577ffe6ad0bd;p=proto%2Flabwc.git osd: always show output name with Before this patch, output names were not shown if there's only one output. --- 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 {