mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: drop AppLog title and add margin instead
The title was hidden under the title bar, anyway. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a8468caaa2
commit
ce21c2a696
1 changed files with 1 additions and 3 deletions
|
@ -17,6 +17,7 @@ Kirigami.ScrollablePage {
|
||||||
|
|
||||||
ListView {
|
ListView {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
anchors.topMargin: Kirigami.Units.gridUnit * 2
|
||||||
model: logModel
|
model: logModel
|
||||||
currentIndex: -1
|
currentIndex: -1
|
||||||
boundsBehavior: Flickable.StopAtBounds
|
boundsBehavior: Flickable.StopAtBounds
|
||||||
|
@ -24,9 +25,6 @@ Kirigami.ScrollablePage {
|
||||||
cacheBuffer: Math.max(5000, parent.height * 5)
|
cacheBuffer: Math.max(5000, parent.height * 5)
|
||||||
focus: true
|
focus: true
|
||||||
clip: true
|
clip: true
|
||||||
header : Kirigami.Heading {
|
|
||||||
text: qsTr("Application Log")
|
|
||||||
}
|
|
||||||
delegate : Text {
|
delegate : Text {
|
||||||
width: logWindow.width
|
width: logWindow.width
|
||||||
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
||||||
|
|
Loading…
Add table
Reference in a new issue