Increase log window size

This commit is contained in:
Michael Theall 2020-04-23 00:25:05 -05:00
parent e8feca0175
commit 6fce93093e
2 changed files with 4 additions and 3 deletions

View File

@ -176,7 +176,8 @@ void FtpServer::draw ()
}
#ifndef _3DS
ImGui::BeginChild ("Logs", ImVec2 (0, 200), false, ImGuiWindowFlags_HorizontalScrollbar);
ImGui::BeginChild (
"Logs", ImVec2 (0, 0.55f * height), false, ImGuiWindowFlags_HorizontalScrollbar);
#endif
drawLog ();
#ifndef _3DS

View File

@ -511,8 +511,8 @@ bool platform::init ()
consoleInit (&g_sessionConsole);
consoleSetWindow (&g_statusConsole, 0, 0, 80, 1);
consoleSetWindow (&g_logConsole, 0, 1, 80, 29);
consoleSetWindow (&g_sessionConsole, 0, 30, 80, 15);
consoleSetWindow (&g_logConsole, 0, 1, 80, 36);
consoleSetWindow (&g_sessionConsole, 0, 37, 80, 8);
#endif
#ifndef NDEBUG