Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2022-02-25 15:22:55 +0300
committerJaime van Kessel <nallath@gmail.com>2022-02-25 15:22:55 +0300
commit5f638ed6c630c322114aaac2a537cbe8c301b8b9 (patch)
treeac0940498c9e844301c38ffba9de685214220c1e /plugins/Marketplace/resources
parentb3d3f5546c35db3e5aeede94b925201ec3938e28 (diff)
Generalize the size of the licence window
No need to have a seperate size of the licence window. Just use the default modal one
Diffstat (limited to 'plugins/Marketplace/resources')
-rw-r--r--plugins/Marketplace/resources/qml/LicenseDialog.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Marketplace/resources/qml/LicenseDialog.qml b/plugins/Marketplace/resources/qml/LicenseDialog.qml
index 1c99569793..09d7c5b59a 100644
--- a/plugins/Marketplace/resources/qml/LicenseDialog.qml
+++ b/plugins/Marketplace/resources/qml/LicenseDialog.qml
@@ -14,8 +14,8 @@ UM.Dialog
{
id: licenseDialog
title: catalog.i18nc("@button", "Plugin license agreement")
- minimumWidth: UM.Theme.getSize("license_window_minimum").width
- minimumHeight: UM.Theme.getSize("license_window_minimum").height
+ minimumWidth: UM.Theme.getSize("modal_window_minimum").width
+ minimumHeight: UM.Theme.getSize("modal_window_minimum").height
width: minimumWidth
height: minimumHeight
backgroundColor: UM.Theme.getColor("main_background")