mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-04 20:43:58 -06:00
23 lines
No EOL
512 B
QML
23 lines
No EOL
512 B
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.1
|
|
|
|
import UM 1.4 as UM
|
|
import Cura 1.1 as Cura
|
|
|
|
import "../components"
|
|
|
|
Column
|
|
{
|
|
ActionButton
|
|
{
|
|
text: catalog.i18nc("@button", "Sign In")
|
|
color: "transparent"
|
|
hoverColor: "transparent"
|
|
textColor: UM.Theme.getColor("text")
|
|
textHoverColor: UM.Theme.getColor("text_link")
|
|
onClicked: Cura.API.account.login()
|
|
}
|
|
} |