From 6c0fecd40d7c52dd02be1b9a41af19444407c922 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 11 Feb 2020 12:55:26 +0100 Subject: [PATCH] [notesqml] Don't use a fixed width --- src/modules/notesqml/notesqml.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/notesqml/notesqml.qml b/src/modules/notesqml/notesqml.qml index 0a60fd741..d1ff4f1b5 100644 --- a/src/modules/notesqml/notesqml.qml +++ b/src/modules/notesqml/notesqml.qml @@ -32,6 +32,7 @@ Item { contentHeight: 800 ScrollBar.vertical: ScrollBar { + id: fscrollbar width: 10 policy: ScrollBar.AlwaysOn } @@ -40,7 +41,7 @@ Item { id: intro x: 1 y: 0 - width: 720 + width: parent.width - fscrollbar.width font.pointSize: 14 textFormat: Text.RichText antialiasing: true