summaryrefslogtreecommitdiffstats
path: root/CheckItem.c
diff options
context:
space:
mode:
authorBert Wesarg <bert.wesarg@googlemail.com>2020-08-31 22:08:35 +0200
committerBert Wesarg <bert.wesarg@googlemail.com>2020-08-31 22:12:46 +0200
commitf861a2c61692eda9d24fc5e32608b3a56bb721bc (patch)
treeceb3a9e51db808b53dd2306eb1373d830a9a1b87 /CheckItem.c
parent47a7d0bd74277371d20446d2fd5cc7410008e484 (diff)
Revert "Use UTF-8 for check buttons and tree open/closed"
This reverts commit 5d5913d355b3a9f03da589b3542b8f55467b4ed6.
Diffstat (limited to 'CheckItem.c')
-rw-r--r--CheckItem.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/CheckItem.c b/CheckItem.c
index a045d2ff..910981e8 100644
--- a/CheckItem.c
+++ b/CheckItem.c
@@ -35,11 +35,12 @@ static void CheckItem_delete(Object* cast) {
static void CheckItem_display(Object* cast, RichString* out) {
CheckItem* this = (CheckItem*)cast;
assert (this != NULL);
+ RichString_write(out, CRT_colors[CHECK_BOX], "[");
if (CheckItem_get(this))
- RichString_append(out, CRT_colors[CHECK_MARK], CRT_checkStr[CHECK_STR_FULL]);
+ RichString_append(out, CRT_colors[CHECK_MARK], "x");
else
- RichString_append(out, CRT_colors[CHECK_MARK], CRT_checkStr[CHECK_STR_NONE]);
- RichString_append(out, CRT_colors[CHECK_TEXT], " ");
+ RichString_append(out, CRT_colors[CHECK_MARK], " ");
+ RichString_append(out, CRT_colors[CHECK_BOX], "] ");
RichString_append(out, CRT_colors[CHECK_TEXT], this->text);
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy