mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
The welcome dialog is now a rectangle instead of a dialog
The whole window approach was just causing to much cross platform issues, so I converted it into a rectangle and put a mouseArea that eats all the events in the greyOut background CURA-6057
This commit is contained in:
parent
28dc187731
commit
894a09b654
3 changed files with 22 additions and 12 deletions
|
|
@ -25,6 +25,8 @@ Item
|
|||
property var progressValue: model == null ? 0 : model.currentProgress
|
||||
property string pageUrl: currentItem == null ? "" : currentItem.page_url
|
||||
|
||||
property alias backgroundColor: panelBackground.color
|
||||
|
||||
signal showNextPage()
|
||||
signal showPreviousPage()
|
||||
signal goToPage(string page_id) // Go to a specific page by the given page_id.
|
||||
|
|
@ -41,7 +43,7 @@ Item
|
|||
id: panelBackground
|
||||
anchors.fill: parent
|
||||
radius: UM.Theme.getSize("default_radius").width
|
||||
|
||||
color: UM.Theme.getColor("main_background")
|
||||
Cura.ProgressBar
|
||||
{
|
||||
id: progressBar
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue