From da4c3f7163f85ac595a61230b2ff0f0ed8b5516f Mon Sep 17 00:00:00 2001 From: George Dang <53052793+gtdang@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:06:10 -0500 Subject: [PATCH] fix: log messages to the bottom of the output window instead of the top --- hnn_core/gui/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hnn_core/gui/gui.py b/hnn_core/gui/gui.py index 3b5c66350..771a98711 100644 --- a/hnn_core/gui/gui.py +++ b/hnn_core/gui/gui.py @@ -156,7 +156,7 @@ def emit(self, record): 'output_type': 'stream', 'text': formatted_record + '\n' } - self.out.outputs = (new_output, ) + self.out.outputs + self.out.outputs = self.out.outputs + (new_output, ) class HNNGUI: