Skip to content

Commit

Permalink
fix: log messages to the bottom of the output window instead of the top
Browse files Browse the repository at this point in the history
  • Loading branch information
gtdang committed Nov 18, 2024
1 parent 11e90c4 commit da4c3f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hnn_core/gui/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit da4c3f7

Please sign in to comment.