summaryrefslogtreecommitdiff
path: root/src/ui/documentwidget.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-04-22 12:06:57 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-04-22 12:06:57 +0300
commitd37a7b3a5955d09bd39302c1ff8a33217b89c659 (patch)
tree46283502d3e7a1f8f5d534998c24d3b186312f79 /src/ui/documentwidget.c
parent6c9914b729a8e020b44018bcc3aa950c8322b313 (diff)
Fixed dialog item formatting
Confused the `-` prefix and `---` as separator.
Diffstat (limited to 'src/ui/documentwidget.c')
-rw-r--r--src/ui/documentwidget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c
index 853c25a9..6cf06f1e 100644
--- a/src/ui/documentwidget.c
+++ b/src/ui/documentwidget.c
@@ -2377,7 +2377,7 @@ static iBool handleCommand_DocumentWidget_(iDocumentWidget *d, const char *cmd)
2377 iArray *items = collectNew_Array(sizeof(iMenuItem)); 2377 iArray *items = collectNew_Array(sizeof(iMenuItem));
2378 for (int i = 0; i < max_ReloadInterval; ++i) { 2378 for (int i = 0; i < max_ReloadInterval; ++i) {
2379 pushBack_Array(items, &(iMenuItem){ 2379 pushBack_Array(items, &(iMenuItem){
2380 format_CStr("%s%s", ((int) d->mod.reloadInterval == i ? "=" : "-"), 2380 format_CStr("%s%s", ((int) d->mod.reloadInterval == i ? "&" : "*"),
2381 label_ReloadInterval_(i)), 2381 label_ReloadInterval_(i)),
2382 0, 2382 0,
2383 0, 2383 0,