summaryrefslogtreecommitdiffstats
path: root/FunctionBar.c
diff options
context:
space:
mode:
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]);