version v0.6

This commit is contained in:
LubuWest 2021-05-12 21:41:34 +02:00
commit 8482bde3ed
86 changed files with 7064 additions and 3208 deletions

View file

@ -32,10 +32,11 @@ import QtQuick 2.6
import QtQuick.Controls 2.12
Button{
id: mButton
width: Math.max(text.width+2*mm,8*mm)
property alias color: bg.color
width: Math.max(text.width+2*mm,2*root.fontFactor*osSettings.bigFontSize)
//radius: mm
height: 6*mm
height: 2*root.fontFactor*osSettings.bigFontSize
//color: Material.grey
font.pixelSize: 3*mm
background: Rectangle{color:"#F8F8F8";radius: 0.5*mm}
font.pointSize: osSettings.bigFontSize
background: Rectangle{id:bg;color:"#F3F3F3";radius: 0.5*mm}
}