Timestamp formatting broke text selection, so the int64 unix timestamp is formatted to a string before being added to the console component. This solved most of the highlighting issues I encountered.

This commit is contained in:
Jakob Friedl
2025-10-12 15:00:42 +02:00
parent f2d2833306
commit 392aaec972
6 changed files with 24 additions and 28 deletions

View File

@@ -338,7 +338,7 @@ type
type
ConsoleItem* = ref object
itemType*: LogType
timestamp*: int64
timestamp*: string
text*: string
ConsoleItems* = ref object