Spacing after keywords (for)

This commit is contained in:
Benny Baumann
2020-10-31 20:55:36 +01:00
parent 374edb9ed5
commit adf797c295
8 changed files with 15 additions and 15 deletions

View File

@ -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);