mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-11 02:49:03 +08:00
Merge pull request #4647 from Ultimaker/hotfix_show_printer_selection
[3.6] CL-1117 Hotfix: Show printer selection
This commit is contained in:
commit
dddda996dc
@ -8,9 +8,6 @@ import UM 1.1 as UM
|
||||
|
||||
UM.Dialog {
|
||||
id: base;
|
||||
property var printersModel: {
|
||||
return ListModel{};
|
||||
}
|
||||
height: minimumHeight;
|
||||
leftButtons: [
|
||||
Button {
|
||||
@ -87,7 +84,9 @@ UM.Dialog {
|
||||
id: printerSelectionCombobox;
|
||||
Behavior on height { NumberAnimation { duration: 100 } }
|
||||
height: 40 * screenScaleFactor;
|
||||
model: base.printersModel;
|
||||
model: ListModel {
|
||||
id: printersModel;
|
||||
}
|
||||
textRole: "name";
|
||||
width: parent.width;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user