mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Also a developer likes to see a nicely formatted page, so correct some bugs in margin handling on the log page. There was a strange multi-line whitespace on the top of the list, and the total width of the page was (initially) a little smaller than full page, so showing a small strip of the page left on the pageStack. This just looks weird. So again, cosmetics only. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			945 B
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			945 B
		
	
	
	
		
			QML
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
import QtQuick 2.6
 | 
						|
import QtQuick.Window 2.2
 | 
						|
import QtQuick.Dialogs 1.2
 | 
						|
import QtQuick.Layouts 1.2
 | 
						|
import QtQuick.Window 2.2
 | 
						|
import QtQuick.Controls 2.2
 | 
						|
import org.subsurfacedivelog.mobile 1.0
 | 
						|
import org.kde.kirigami 2.2 as Kirigami
 | 
						|
 | 
						|
Kirigami.ScrollablePage {
 | 
						|
	id: logWindow
 | 
						|
	width: subsurfaceTheme.columnWidth
 | 
						|
	objectName: "Log"
 | 
						|
	title: qsTr("Application Log")
 | 
						|
	background: Rectangle { color: subsurfaceTheme.backgroundColor }
 | 
						|
 | 
						|
	ListView {
 | 
						|
		anchors.fill: parent
 | 
						|
		model: logModel
 | 
						|
		currentIndex: -1
 | 
						|
		boundsBehavior: Flickable.StopAtBounds
 | 
						|
		maximumFlickVelocity: parent.height * 5
 | 
						|
		cacheBuffer: Math.max(5000, parent.height * 5)
 | 
						|
		focus: true
 | 
						|
		clip: true
 | 
						|
		delegate : Text {
 | 
						|
			width: logWindow.width
 | 
						|
			wrapMode: Text.WrapAtWordBoundaryOrAnywhere
 | 
						|
			color: Kirigami.Theme.textColor
 | 
						|
			text : message
 | 
						|
			font.pointSize: subsurfaceTheme.smallPointSize
 | 
						|
			leftPadding: Kirigami.Units.gridUnit / 2
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |