j.delarago
e60b8ac30c
Merge remote-tracking branch 'origin/CURA-8688_qt6_cleanup' into CURA-8688_qt6_cleanup
2022-02-18 10:32:21 +01:00
j.delarago
9b05dbdb85
MenuItem height has to be set to 0 when visible: false otherwise there is white space in place of the MenuItem.
...
This functionality is included in UM and was being overwritten in Cura.MenuItem.
CURA-8688
2022-02-18 10:29:55 +01:00
Jaime van Kessel
ee7bcc3f5f
Use UM checkbox
...
CURA-8949
2022-02-18 10:27:08 +01:00
Jaime van Kessel
48fa6cddf0
Merge branch 'replace_controls_1_for_controls_2' of github.com:Ultimaker/Cura into CURA-8949_preferences_styling
2022-02-18 10:24:06 +01:00
Jaime van Kessel
6e5e5152be
Change machine actions buttons to secondaryButtons
...
CURA-8949
2022-02-18 10:14:47 +01:00
casper
ab17df15b5
Merge branch 'replace_controls_1_for_controls_2' into CURA-8688_qt6_cleanup
2022-02-18 10:08:12 +01:00
casper
5a2e26eff6
Merge branch 'replace_controls_1_for_controls_2' into CURA-8685-replace_text_and_progress_bars
...
# Conflicts:
# plugins/PerObjectSettingsTool/PerObjectItem.qml
# plugins/PerObjectSettingsTool/SettingPickDialog.qml
2022-02-18 09:07:25 +01:00
casper
9f7581d4e8
Remove ReadOnlyTextField
...
and use a
```
UM.TextField
{
enabled: false
}
```
instead
CURA-8688
2022-02-18 08:57:38 +01:00
j.delarago
e990e970be
Revert background to Rectangle as it was in previous versions of this file.
...
This gives the bar a white background, instead of a transparent background.
CURA-8688
2022-02-17 15:42:25 +01:00
j.delarago
b2811b1125
Merge branch 'replace_controls_1_for_controls_2' into CURA-8688_qt6_cleanup
2022-02-17 15:21:19 +01:00
Jaime van Kessel
5f9e916f29
Merge branch 'Ok_button_dialog' of github.com:Ultimaker/Cura into replace_controls_1_for_controls_2
2022-02-17 15:21:15 +01:00
Jaime van Kessel
f7dc2fc2d1
Merge branch 'materials_sync' of github.com:Ultimaker/Cura into replace_controls_1_for_controls_2
2022-02-17 15:13:15 +01:00
Jaime van Kessel
b5136ba70c
Fix merge conflics
2022-02-17 15:07:48 +01:00
Jaime van Kessel
f682f56923
Merge branch 'master' of github.com:Ultimaker/Cura into replace_controls_1_for_controls_2
2022-02-17 15:02:03 +01:00
Jaime van Kessel
c528616d12
Set selection color of textfields
...
CURA-8947
2022-02-17 14:39:11 +01:00
casper
0786ff2c6b
Change variable names
...
"swatch" is a more descriptive variable name for this usecase
CURA-8938
2022-02-17 09:50:38 +01:00
casper
02a6cc6e1d
Improve visual appearance of ColorDialog
...
According to the figma design
CURA-8938
2022-02-16 23:43:54 +01:00
Jaime van Kessel
821581bc65
Remove ProgressBar style and use UM.ProgressBar instead
...
CURA-8685
2022-02-15 17:07:22 +01:00
Jaime van Kessel
13227249b5
Remove catalog from Textfield
...
The creation of the catalog is rather slow, so it's better not to create it for every component
2022-02-15 16:28:29 +01:00
Jaime van Kessel
eb7ab657fe
Use Cura.Textfield in readonlyTextfield
...
Less code duplication, which is always good
CURA-8685
2022-02-15 16:26:58 +01:00
Ghostkeeper
e552383863
Consistently use Cura.Menu and Cura.MenuItem
...
Some of these were using the built-in Menu and MenuItem, causing the menus to appear in different sizes.
Contributes to issue CURA-8688.
2022-02-15 16:19:39 +01:00
Jaime van Kessel
d7758c0ee9
Swap out the GeneralPage items to use the themed ones
...
CURA-8685
2022-02-15 16:11:06 +01:00
Ghostkeeper
52ff67c1eb
Use separate context menu size for menus
...
Instead of re-using the setting controls. It's not a setting.
Contributes to issue CURA-8688.
2022-02-15 16:09:18 +01:00
Jaime van Kessel
6ea7622a55
Fix reference to property that didn't exist
...
CURA-8685
2022-02-15 15:57:50 +01:00
Jaime van Kessel
b45b3faa3c
Replace textField in JobSpecs
...
CURA-8685
2022-02-15 15:32:29 +01:00
Jaime van Kessel
6be75c75f8
Simpify Readonly textarea
...
CURA-8685
2022-02-15 15:18:04 +01:00
Jaime van Kessel
da96cb833c
Swap ReadOnlyTextfield to controls 2
...
CURA-8685
2022-02-15 15:16:16 +01:00
Jaime van Kessel
a20dac4c9b
Update ReadOnlyTextArea to controls 2
...
CURA-8685
2022-02-15 15:08:06 +01:00
casper
99478d6a15
Add "Ok" button in export/import materials popup dialog
...
Proposed solution takes a different approach compared to the previous
solution. Previously there was one message dialog that was hidden by
default. When the import/export material confirm dialog was triggered
the text and body of this message dialog would change.
I did deviate from this pattern as this might introduce hard to debug
issues when a property would be set on this dialog. As this dialog is
used for various instances every instance should update the same
properties. If one property is missed then the popup might show unwanted
information.
I propose a different solution instead. Here a popup is created
dynamically. This way the properties used for each instance is clear.
This might add a delay when showing the popup as the whole component
needs to be created when called.
CURA-8959
2022-02-15 11:18:02 +01:00
casper
ca0d84dcae
Always prefix text in ColorDialog with a hashtag
...
CURA 8687
2022-02-11 13:48:57 +01:00
casper
959caece90
Make input field in ColorDialog selectable by mouse
...
CURA 8687
2022-02-11 13:45:03 +01:00
casper
86392ab471
Remove empty file
...
CURA 8687
2022-02-11 13:31:19 +01:00
casper
2edd634909
Provide a title with the color picker
...
CURA 8687
2022-02-11 13:27:41 +01:00
casper
7f95dc98e6
Translate text within the color picker
...
CURA 8687
2022-02-11 13:27:29 +01:00
casper
46fac4263b
Fix styling issues in the material sync dialog
...
CURA 8939
2022-02-11 13:10:24 +01:00
Casper Lamboo
5063b84c9a
Remove superfluous semicolumn
...
Co-authored-by: Jaime van Kessel <nallath@gmail.com>
2022-02-11 11:32:12 +01:00
Casper Lamboo
8c0b0ddc5b
Remove superfluous semicolumn
...
Co-authored-by: Jaime van Kessel <nallath@gmail.com>
2022-02-11 11:32:03 +01:00
Casper Lamboo
02f648d40a
Remove superfluous semicolumn
...
Co-authored-by: Jaime van Kessel <nallath@gmail.com>
2022-02-11 11:31:54 +01:00
Casper Lamboo
b2f3b365c9
Remove setting duplicate properties of UM.Label
default settings
...
Co-authored-by: Jaime van Kessel <nallath@gmail.com>
2022-02-11 11:31:30 +01:00
Jaime van Kessel
c1d5526537
Add some documentation to ColorDialog
...
CURA-8687
2022-02-11 11:08:11 +01:00
casper
91c95a0ed6
Remove duplicate function
...
CURA 8687
2022-02-11 10:47:37 +01:00
casper
1c711129e2
Merge branch 'replace_controls_1_for_controls_2' into CURA-8687_dialogs
...
# Conflicts:
# resources/qml/Account/SyncState.qml
# resources/qml/Preferences/ReadOnlySpinBox.qml
2022-02-11 10:44:52 +01:00
casper
1eabf251f4
Remove unused function
...
CURA 8687
2022-02-10 18:07:42 +01:00
casper
fca6ef29ae
Move ColorDialog
to Cura repo
...
Move component to the Cura repo as `Cura.SecondaryButton` and
`Cura.PrimaryButton` are used.
CURA 8687
2022-02-10 18:06:43 +01:00
j.delarago
9bad66b6ce
Add custom ColorDialog.qml with simple hex value selector.
...
Cura-8681
2022-02-10 17:28:29 +01:00
Jaime van Kessel
f15f01e32f
Fix styling of visibilityPresetCombobox
2022-02-10 11:24:07 +01:00
Jaime van Kessel
1b9c86603c
Fix layout of multiply object dialog
2022-02-10 10:59:21 +01:00
Jaime van Kessel
78523789e7
Use correct styling in settingmenu
2022-02-10 10:49:18 +01:00
Jaime van Kessel
5615ec82a3
Prevent text in configuration menu from spilling out of the menu
2022-02-10 10:45:51 +01:00
Jaime van Kessel
ddc43446e6
Fix wrapping in sync menu
2022-02-10 10:37:26 +01:00