mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 11:53:48 +00:00
FIX: utf8 convert error in WebGuideDialog
Change-Id: Ie575117615b2a3dc3b11bc9c91e773ec104f7a61
This commit is contained in:
@@ -898,7 +898,7 @@ int GuideFrame::LoadProfile()
|
|||||||
} else {
|
} else {
|
||||||
//cout << "is a file" << endl;
|
//cout << "is a file" << endl;
|
||||||
//cout << iter->path().string() << endl;
|
//cout << iter->path().string() << endl;
|
||||||
wxString strVendor = wxString(iter->path().string()).BeforeLast('.');
|
wxString strVendor = from_u8(iter->path().string()).BeforeLast('.');
|
||||||
strVendor = strVendor.AfterLast( '\\');
|
strVendor = strVendor.AfterLast( '\\');
|
||||||
strVendor = strVendor.AfterLast('\/');
|
strVendor = strVendor.AfterLast('\/');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user