diff options
author | Marvin Borner | 2020-11-25 12:32:07 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-25 12:32:07 +0100 |
commit | 19a7f913dae543f7adf3ff1de1a41899c1087692 (patch) | |
tree | 0d5c368f11d4d5b5ea1548e7a88f2b25c6a8cec8 | |
parent | 9257facb17bf74eb0eb1babfc59ff3549eb66242 (diff) |
Fixed file manager
Idk how I could miss that...
-rw-r--r-- | apps/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files.c b/apps/files.c index c27e39c..e21af5a 100644 --- a/apps/files.c +++ b/apps/files.c @@ -36,7 +36,7 @@ void render_list(const char *path) static struct element *list = NULL; if (list) gui_remove_element(list); - list = gui_add_container(root, 0, 0, 600, 400, COLOR_BLACK); + list = gui_add_container(root, 0, 0, 100, 100, COLOR_BLACK); struct dirent *d = read(path); |