TraceScreen: draw panel header

This commit is contained in:
Youngjae Lee 2021-01-14 16:08:02 +09:00 committed by BenBE
parent 3c61813ea6
commit e54a790b14
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ TraceScreen* TraceScreen_new(const Process* process) {
this->tracing = true;
FunctionBar* fuBar = FunctionBar_new(TraceScreenFunctions, TraceScreenKeys, TraceScreenEvents);
CRT_disableDelay();
return (TraceScreen*) InfoScreen_init(&this->super, process, fuBar, LINES - 2, "");
return (TraceScreen*) InfoScreen_init(&this->super, process, fuBar, LINES - 2, " ");
}
void TraceScreen_delete(Object* cast) {