summaryrefslogtreecommitdiffstats
path: root/Panel.c
diff options
context:
space:
mode:
Diffstat (limited to 'Panel.c')
-rw-r--r--Panel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Panel.c b/Panel.c
index ab3f6009..7507efda 100644
--- a/Panel.c
+++ b/Panel.c
@@ -259,7 +259,7 @@ void Panel_draw(Panel* this, bool focus) {
if (this->needsRedraw) {
int line = 0;
- for(int i = first; line < h && i < upTo; i++) {
+ for (int i = first; line < h && i < upTo; i++) {
Object* itemObj = Vector_get(this->items, i);
RichString_begin(item);
Object_display(itemObj, &item);