Fix if statements

This commit is contained in:
Kevin Dorner 2020-10-25 10:11:53 +01:00
parent 1a2ee8f208
commit 032b7a6d1c
1 changed files with 2 additions and 2 deletions

View File

@ -20,13 +20,13 @@ Set $CreateContextMenuEntry$ = GetProductProperty("contextmenuentry", "false")
Set $DesktopShortcutArgument$ = GetProductProperty("desktopshortcut", "false")
[Sub_ConfigureProperties]
if ($CreateContextMenuEntry$ = "true")
if ($CreateContextMenuEntry$)
Set $ContextMenuArguments$ = ", !addcontextmenufiles, !addcontextmenufolders"
else
Set $ContextMenuArguments$ = ""
endif
if ($CreateDesktopShortcut$ = "true")
if ($CreateDesktopShortcut$)
Set $DesktopShortcutArgument$ = ", !desktopicon"
else
Set $DesktopShortcutArgument$ = ""