summaryrefslogtreecommitdiffstats
path: root/EnvScreen.c
diff options
context:
space:
mode:
authorDaniel Lange <DLange@git.local>2021-01-11 12:53:07 +0100
committerDaniel Lange <DLange@git.local>2021-01-11 12:53:07 +0100
commit1ffe5d79bd1285ee148f8dd7a95a383d83ba4473 (patch)
tree7b1b756b8961a93f7a73a75643dd27da8301109e /EnvScreen.c
parent8502f4e64f61ab6b8b60203e2ed92a26138d750d (diff)
Make Infoscreens the correct height
Diffstat (limited to 'EnvScreen.c')
-rw-r--r--EnvScreen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/EnvScreen.c b/EnvScreen.c
index 0cdc4cac..acd1f330 100644
--- a/EnvScreen.c
+++ b/EnvScreen.c
@@ -17,7 +17,7 @@
EnvScreen* EnvScreen_new(Process* process) {
EnvScreen* this = xMalloc(sizeof(EnvScreen));
Object_setClass(this, Class(EnvScreen));
- return (EnvScreen*) InfoScreen_init(&this->super, process, NULL, LINES - 3, " ");
+ return (EnvScreen*) InfoScreen_init(&this->super, process, NULL, LINES - 2, " ");
}
void EnvScreen_delete(Object* this) {

© 2014-2024 Faster IT GmbH | imprint | privacy policy