mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 09:56:04 +08:00
Merge branch 'master' of github.com:Ultimaker/Cura
This commit is contained in:
commit
3dde93e7f4
@ -591,7 +591,12 @@ UM.MainWindow
|
|||||||
modality: Qt.WindowModal
|
modality: Qt.WindowModal
|
||||||
selectMultiple: true
|
selectMultiple: true
|
||||||
nameFilters: UM.MeshFileHandler.supportedReadFileTypes;
|
nameFilters: UM.MeshFileHandler.supportedReadFileTypes;
|
||||||
folder: CuraApplication.getDefaultPath("dialog_load_path")
|
folder:
|
||||||
|
{
|
||||||
|
//Because several implementations of the file dialog only update the folder when it is explicitly set.
|
||||||
|
folder = CuraApplication.getDefaultPath("dialog_load_path");
|
||||||
|
return CuraApplication.getDefaultPath("dialog_load_path");
|
||||||
|
}
|
||||||
onAccepted:
|
onAccepted:
|
||||||
{
|
{
|
||||||
// Because several implementations of the file dialog only update the folder
|
// Because several implementations of the file dialog only update the folder
|
||||||
|
@ -55,6 +55,7 @@ Item
|
|||||||
|
|
||||||
delegate: Button
|
delegate: Button
|
||||||
{
|
{
|
||||||
|
id: stageSelectorButton
|
||||||
text: model.name.toUpperCase()
|
text: model.name.toUpperCase()
|
||||||
checkable: true
|
checkable: true
|
||||||
checked: UM.Controller.activeStage !== null && model.id == UM.Controller.activeStage.stageId
|
checked: UM.Controller.activeStage !== null && model.id == UM.Controller.activeStage.stageId
|
||||||
|
Loading…
x
Reference in New Issue
Block a user