linphone-desktop/tests/ui/components/form/ToolBarButton.qml
2016-09-12 11:14:22 +02:00

14 lines
302 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.0
// ===================================================================
ToolButton {
property alias image: backgroundImage.source
Image {
anchors.fill: parent
fillMode: Image.PreserveAspectFit
id: backgroundImage
}
}