Fix logger scrolling.

This commit is contained in:
2026-02-28 21:45:42 -05:00
parent a9564493cb
commit 7a0b2d197f

View File

@@ -14,7 +14,6 @@ Rectangle {
ListModel { ListModel {
id: model id: model
} }
ListView { ListView {
id: listView id: listView
@@ -38,10 +37,10 @@ Rectangle {
anchors.fill: parent anchors.fill: parent
model: model model: model
verticalLayoutDirection: ListView.BottomToTop
delegate: Text { delegate: Text {
color: listView.getLogColor(level) color: listView.getLogColor(level)
font.family: "monospace"
text: `[${level}] ${message}` text: `[${level}] ${message}`
} }