summaryrefslogtreecommitdiffstats
path: root/FunctionBar.c
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-11-01 01:09:51 +0100
committerBenny Baumann <BenBE@geshi.org>2020-11-02 22:15:01 +0100
commit45869513bfebba80cc2ab42e4218f68b34b1e6ac (patch)
treef064631dbff141bf1c945db8cff40b7bb82fd169 /FunctionBar.c
parent61e14d4bb25268593019e6df3eb02264b4ac8e0e (diff)
Embracing branches
Diffstat (limited to 'FunctionBar.c')
-rw-r--r--FunctionBar.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/FunctionBar.c b/FunctionBar.c
index 93456583..627bc777 100644
--- a/FunctionBar.c
+++ b/FunctionBar.c
@@ -106,10 +106,11 @@ void FunctionBar_drawExtra(const FunctionBar* this, const char* buffer, int attr
}
if (buffer) {
- if (attr == -1)
+ if (attr == -1) {
attrset(CRT_colors[FUNCTION_BAR]);
- else
+ } else {
attrset(attr);
+ }
mvaddstr(LINES - 1, x, buffer);
attrset(CRT_colors[RESET_COLOR]);
x += strlen(buffer);
@@ -126,10 +127,11 @@ void FunctionBar_drawExtra(const FunctionBar* this, const char* buffer, int attr
}
void FunctionBar_append(const char* buffer, int attr) {
- if (attr == -1)
+ if (attr == -1) {
attrset(CRT_colors[FUNCTION_BAR]);
- else
+ } else {
attrset(attr);
+ }
mvaddstr(LINES - 1, currentLen, buffer);
attrset(CRT_colors[RESET_COLOR]);

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