mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	The app log and theme info had context menus with a single close item. No need for that. Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			989 B
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			989 B
		
	
	
	
		
			QML
		
	
	
	
	
	
| import QtQuick 2.3
 | |
| import QtQuick.Controls 1.2
 | |
| import QtQuick.Controls.Styles 1.2
 | |
| import QtQuick.Window 2.2
 | |
| import QtQuick.Dialogs 1.2
 | |
| import QtQuick.Layouts 1.1
 | |
| import QtQuick.Window 2.2
 | |
| import org.subsurfacedivelog.mobile 1.0
 | |
| import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
 | |
| 
 | |
| MobileComponents.Page {
 | |
| 	id: logWindow
 | |
| 	width: parent.width - MobileComponents.Units.gridUnit
 | |
| 	anchors.margins: MobileComponents.Units.gridUnit / 2
 | |
| 	objectName: "Log"
 | |
| 
 | |
| 	ScrollView {
 | |
| 		anchors.fill: parent
 | |
| 		Flickable {
 | |
| 			id: logFlick
 | |
| 			anchors.fill: parent
 | |
| 			contentHeight: logContent.height
 | |
| 			clip: true
 | |
| 			ColumnLayout {
 | |
| 				width: logFlick.width
 | |
| 				spacing: MobileComponents.Units.smallSpacing
 | |
| 				MobileComponents.Heading {
 | |
| 					text: "Application Log"
 | |
| 				}
 | |
| 				MobileComponents.Label {
 | |
| 					id: logContent
 | |
| 					Layout.preferredWidth: parent.width
 | |
| 					Layout.maximumWidth: parent.width
 | |
| 					wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
 | |
| 					text: manager.logText
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 |