Fixed update of application's title bar when trying to import a non compatible .3mf or .amf project

This commit is contained in:
Enrico Turri 2019-09-02 15:15:28 +02:00
parent 292bff027e
commit d0513fc2da
2 changed files with 15 additions and 10 deletions

View file

@ -147,9 +147,9 @@ public:
void add_model();
void extract_config_from_project();
void load_files(const std::vector<boost::filesystem::path>& input_files, bool load_model = true, bool load_config = true);
std::vector<size_t> load_files(const std::vector<boost::filesystem::path>& input_files, bool load_model = true, bool load_config = true);
// To be called when providing a list of files to the GUI slic3r on command line.
void load_files(const std::vector<std::string>& input_files, bool load_model = true, bool load_config = true);
std::vector<size_t> load_files(const std::vector<std::string>& input_files, bool load_model = true, bool load_config = true);
void update();
void stop_jobs();