From a15799992586da788748a4be31a8af9286666a70 Mon Sep 17 00:00:00 2001 From: tokyo4j Date: Thu, 29 May 2025 04:47:41 +0900 Subject: [PATCH] osd: always show title with Before this patch, titles were not shown if they are identical to the identifiers. --- 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 5a12e97b..33cf2a79 100644 --- a/src/osd-field.c +++ b/src/osd-field.c @@ -324,8 +324,7 @@ osd_field_arg_from_xml_node(struct window_switcher_field *field, } else if (!strcmp(content, "desktop_entry_name")) { field->content = LAB_FIELD_DESKTOP_ENTRY_NAME; } else if (!strcmp(content, "title")) { - /* Keep old defaults */ - field->content = LAB_FIELD_TITLE_SHORT; + field->content = LAB_FIELD_TITLE; } else if (!strcmp(content, "workspace")) { field->content = LAB_FIELD_WORKSPACE; } else if (!strcmp(content, "state")) {