From 30bc2a0cdfdcd4bd513b86047765cf83fdc4fbf7 Mon Sep 17 00:00:00 2001 From: M4x1m3 Date: Sun, 26 Jan 2020 14:20:09 +0100 Subject: [PATCH] [apps/code] Fixed #198 --- apps/code/console_controller.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/code/console_controller.h b/apps/code/console_controller.h index 5775744c3..3b9d33dd4 100644 --- a/apps/code/console_controller.h +++ b/apps/code/console_controller.h @@ -78,7 +78,7 @@ private: static constexpr size_t k_maxImportCommandSize = 5 + 9 + TextField::maxBufferSize(); // strlen(k_importCommand1) + strlen(k_importCommand2) + TextField::maxBufferSize() static constexpr int LineCellType = 0; static constexpr int EditCellType = 1; - static constexpr int k_numberOfLineCells = 15; // May change depending on the screen height + static constexpr int k_numberOfLineCells = 20; // May change depending on the screen height static constexpr int k_outputAccumulationBufferSize = 100; void flushOutputAccumulationBufferToStore(); void appendTextToOutputAccumulationBuffer(const char * text, size_t length);