bar/modules/classes/TopbarSVG.qml (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import QtQuick
import QtQuick.Controls
import "../../.."
Button {
padding: 0
icon.color: Resources.palette.orange
icon.width: Resources.fontsize.topbar_text
icon.height: Resources.fontsize.topbar_text
background: Rectangle {
color: Resources.palette.bg
width:0
height:0
}
}
|