This commit is contained in:
DavidXanatos 2022-10-19 09:10:06 +02:00
commit c66e716aba
2 changed files with 3 additions and 3 deletions

View File

@ -38,8 +38,8 @@ copy "%redistPath%\*" %instPath%\
ECHO Copying Qt libraries
REM IF NOT %archPath% == ARM64 (
IF %archPath% == Win32 (
IF NOT %archPath% == ARM64 (
REM IF %archPath% == Win32 (
copy %qtPath%\bin\Qt5Core.dll %instPath%\
copy %qtPath%\bin\Qt5Gui.dll %instPath%\
copy %qtPath%\bin\Qt5Network.dll %instPath%\

View File

@ -1234,7 +1234,7 @@ void CSbieView::OnSandBoxAction(QAction* Action, const QList<CSandBoxPtr>& SandB
if (!TestNameAndWarn(Value))
return;
SB_STATUS Status = SandBoxes.first()->RenameBox(Value);
SB_STATUS Status = SandBoxes.first()->RenameBox(Value.replace(" ", "_"));
if (!Status.IsError())
RenameItem(OldValue.replace(" ", "_"), Value.replace(" ", "_"));
Results.append(Status);