Merge branch 'master' of https://github.com/sandboxie-plus/Sandboxie
This commit is contained in:
commit
c66e716aba
|
@ -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%\
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue