Add maxMessageCharactersPerLine setting

Can be set to -1 for no maximum width.
This commit is contained in:
miruka
2020-05-16 14:28:29 -04:00
parent 315237b411
commit 60ad7416d9
3 changed files with 16 additions and 2 deletions

View File

@@ -32,6 +32,7 @@ Item {
readonly property alias mainPane: mainPane
readonly property alias pageLoader: pageLoader
readonly property alias pressAnimation: pressAnimation
readonly property alias fontMetrics: fontMetrics
function reloadSettings() {
@@ -82,6 +83,13 @@ Item {
}
}
FontMetrics {
id: fontMetrics
font.family: theme.fontFamily.sans
font.pixelSize: theme.fontSize.normal
font.pointSize: -1
}
DebugConsole {
id: debugConsole
target: mainUI