Config wizard will prompt user to copy the profiles from Slic3r to Slic3rPE

if the datadir is left to the default value (which is Slic3r),
and Slic3rPE directory exists.
This commit is contained in:
bubnikv 2017-12-14 13:47:22 +01:00
parent d65835f89b
commit 4bbe328117
2 changed files with 21 additions and 0 deletions

View file

@ -193,6 +193,7 @@ confess_at(const char *file, int line, const char *func,
namespace Slic3r {
// Encode an UTF-8 string to the local code page.
std::string encode_path(const char *src)
{
#ifdef WIN32
@ -210,6 +211,7 @@ std::string encode_path(const char *src)
#endif /* WIN32 */
}
// Encode an 8-bit string from a local code page to UTF-8.
std::string decode_path(const char *src)
{
#ifdef WIN32