summaryrefslogtreecommitdiffstats
path: root/window-customize.c
diff options
context:
space:
mode:
authornicm <nicm>2022-03-24 12:07:25 +0000
committernicm <nicm>2022-03-24 12:07:25 +0000
commit938130bc6925808681cbc003a392ccce2a4455c1 (patch)
tree218ba8620491f3a3565009b98f6f08c21218df39 /window-customize.c
parent792d13af49f2550a9a8d11b0099528628957a1a0 (diff)
Add unit (milliseconds) to escape-time, show unset colours as "none"
rather than "invalid" and don't show the same text twice for user options in customize mode.
Diffstat (limited to 'window-customize.c')
-rw-r--r--window-customize.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/window-customize.c b/window-customize.c
index 98387e50..4a16e90c 100644
--- a/window-customize.c
+++ b/window-customize.c
@@ -680,9 +680,7 @@ window_customize_draw_option(struct window_customize_modedata *data,
}
ft = format_create_from_state(NULL, NULL, &fs);
- if (oe == NULL)
- text = "This is a user option.";
- else if (oe->text == NULL)
+ if (oe == NULL || oe->text == NULL)
text = "This option doesn't have a description.";
else
text = oe->text;