mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 14:34:01 -06:00
Update Icons
Subdivided the new icons in 3 size categories. As requested by UX Used the company naming scheme for uniformity and easy recognition. Known issues: - Top/Bottom category wasn't taken into account by UX at the time. Since this is a recent addition. Both the Walls and Top/Bottom will be updated. - Cloud/Network connection icons 12px don't render correctly. Due to the theme-ing. - Extruder Icons do not render correctly. CURA-8010_new_icons
This commit is contained in:
parent
7e98fb7fb0
commit
2bd6f28f3a
281 changed files with 1045 additions and 1468 deletions
|
@ -52,7 +52,7 @@ Item
|
|||
width: parent.width + 2
|
||||
height: parent.height + 2
|
||||
visible: hasAvatar
|
||||
source: UM.Theme.getIcon("circle_outline")
|
||||
source: UM.Theme.getIcon("CircleOutline")
|
||||
sourceSize: Qt.size(parent.width, parent.height)
|
||||
color: UM.Theme.getColor("account_widget_outline_active")
|
||||
}
|
||||
|
|
|
@ -18,27 +18,27 @@ Row // Sync state icon + message
|
|||
{
|
||||
name: "idle"
|
||||
when: syncState == Cura.AccountSyncState.IDLE
|
||||
PropertyChanges { target: icon; source: UM.Theme.getIcon("update")}
|
||||
PropertyChanges { target: icon; source: UM.Theme.getIcon("ArrowDoubleCircleRight")}
|
||||
},
|
||||
State
|
||||
{
|
||||
name: "syncing"
|
||||
when: syncState == Cura.AccountSyncState.SYNCING
|
||||
PropertyChanges { target: icon; source: UM.Theme.getIcon("update") }
|
||||
PropertyChanges { target: icon; source: UM.Theme.getIcon("ArrowDoubleCircleRight") }
|
||||
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Checking...")}
|
||||
},
|
||||
State
|
||||
{
|
||||
name: "up_to_date"
|
||||
when: syncState == Cura.AccountSyncState.SUCCESS
|
||||
PropertyChanges { target: icon; source: UM.Theme.getIcon("checked") }
|
||||
PropertyChanges { target: icon; source: UM.Theme.getIcon("CheckCircle") }
|
||||
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Account synced")}
|
||||
},
|
||||
State
|
||||
{
|
||||
name: "error"
|
||||
when: syncState == Cura.AccountSyncState.ERROR
|
||||
PropertyChanges { target: icon; source: UM.Theme.getIcon("warning_light") }
|
||||
PropertyChanges { target: icon; source: UM.Theme.getIcon("Warning") }
|
||||
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Something went wrong...")}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue