mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-09 19:29:00 +08:00
18 lines
348 B
QML
18 lines
348 B
QML
import QtQuick 2.2
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Controls.Styles 1.1
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import UM 1.0 as UM
|
|
|
|
Button {
|
|
id: base;
|
|
|
|
Layout.preferredHeight: UM.Theme.sizes.section.height;
|
|
Layout.preferredWidth: UM.Theme.sizes.section.width;
|
|
|
|
property variant color;
|
|
|
|
style: UM.Theme.styles.sidebar_category;
|
|
}
|