Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer
This commit is contained in:
commit
5fe3ddf26f
@ -63,7 +63,7 @@ void AppConfig::set_defaults()
|
|||||||
|
|
||||||
#if ENABLE_CONFIGURABLE_PATHS_EXPORT_TO_3MF_AND_AMF
|
#if ENABLE_CONFIGURABLE_PATHS_EXPORT_TO_3MF_AND_AMF
|
||||||
if (get("export_sources_full_pathnames").empty())
|
if (get("export_sources_full_pathnames").empty())
|
||||||
set("export_sources_full_pathnames", "1");
|
set("export_sources_full_pathnames", "0");
|
||||||
#endif // ENABLE_CONFIGURABLE_PATHS_EXPORT_TO_3MF_AND_AMF
|
#endif // ENABLE_CONFIGURABLE_PATHS_EXPORT_TO_3MF_AND_AMF
|
||||||
|
|
||||||
// remove old 'use_legacy_opengl' parameter from this config, if present
|
// remove old 'use_legacy_opengl' parameter from this config, if present
|
||||||
|
@ -768,7 +768,7 @@ PageUpdate::PageUpdate(ConfigWizard *parent)
|
|||||||
#if ENABLE_CONFIGURABLE_PATHS_EXPORT_TO_3MF_AND_AMF
|
#if ENABLE_CONFIGURABLE_PATHS_EXPORT_TO_3MF_AND_AMF
|
||||||
PageReloadFromDisk::PageReloadFromDisk(ConfigWizard* parent)
|
PageReloadFromDisk::PageReloadFromDisk(ConfigWizard* parent)
|
||||||
: ConfigWizardPage(parent, _(L("Reload from disk")), _(L("Reload from disk")))
|
: ConfigWizardPage(parent, _(L("Reload from disk")), _(L("Reload from disk")))
|
||||||
, full_pathnames(true)
|
, full_pathnames(false)
|
||||||
{
|
{
|
||||||
auto* box_pathnames = new wxCheckBox(this, wxID_ANY, _(L("Export full pathnames of models and parts sources into 3mf and amf files")));
|
auto* box_pathnames = new wxCheckBox(this, wxID_ANY, _(L("Export full pathnames of models and parts sources into 3mf and amf files")));
|
||||||
box_pathnames->SetValue(wxGetApp().app_config->get("export_sources_full_pathnames") == "1");
|
box_pathnames->SetValue(wxGetApp().app_config->get("export_sources_full_pathnames") == "1");
|
||||||
|
Loading…
Reference in New Issue
Block a user