diff options
author | Marvin Borner | 2020-11-25 12:32:07 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-28 16:12:59 +0100 |
commit | cc7b4983c07a00ab721bd5b4a533f3078c871530 (patch) | |
tree | 455f7e46cb8187baf8106a7d55255c5f4c988189 /apps | |
parent | 05d7a42fa5f848f6ddc1e4018af82cd6a0e31d86 (diff) |
Fixed file manager
Idk how I could miss that...
Diffstat (limited to 'apps')
-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); |