mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	The background color in our own checkbox should match the page background. Also includes some whitespace cleanup. Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			626 B
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			626 B
		
	
	
	
		
			QML
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
import QtQuick 2.6
 | 
						|
import QtQuick.Controls 2.2
 | 
						|
import org.kde.kirigami 2.2 as Kirigami
 | 
						|
 | 
						|
CheckBox {
 | 
						|
	id: root
 | 
						|
	indicator: Rectangle {
 | 
						|
		implicitWidth: 20
 | 
						|
		implicitHeight: 20
 | 
						|
		x: root.leftPadding
 | 
						|
		y: parent.height / 2 - height / 2
 | 
						|
		radius: 4
 | 
						|
		border.color: root.down ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor
 | 
						|
		border.width: 2
 | 
						|
		color: subsurfaceTheme.backgroundColor
 | 
						|
 | 
						|
		Rectangle {
 | 
						|
			width: 12
 | 
						|
			height: 12
 | 
						|
			x: 4
 | 
						|
			y: 4
 | 
						|
			radius: 3
 | 
						|
			color: root.down ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor
 | 
						|
			visible: root.checked
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |