IDEA-204535 Header text in Rider Installer is heavily misaligned

This commit is contained in:
Vladimir.Orlov
2018-12-20 15:47:11 +03:00
parent dbdeff2b0e
commit fd16fb11cc
2 changed files with 11 additions and 1 deletions
+5
View File
@@ -513,15 +513,20 @@ Page custom uninstallOldVersionDialog
!endif
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE OnDirectoryPageLeave
!define MUI_PAGE_HEADER_TEXT "$(choose_install_location)"
!insertmacro MUI_PAGE_DIRECTORY
Page custom ConfirmDesktopShortcut
!define MUI_PAGE_HEADER_TEXT "$(choose_start_menu_folder)"
!define MUI_STARTMENUPAGE_NODISABLE
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "JetBrains"
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
!define MUI_ABORTWARNING
!define MUI_PAGE_HEADER_TEXT "$(installing_product)"
!insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_RUN_NOTCHECKED
!define MUI_FINISHPAGE_REBOOTLATER_DEFAULT
!define MUI_FINISHPAGE_RUN
+6 -1
View File
@@ -1,5 +1,10 @@
; Installation pages headers
LangString choose_install_location ${LANG_ENGLISH} " Choose Install Location"
LangString choose_start_menu_folder ${LANG_ENGLISH} " Choose Start Menu Folder"
LangString installing_product ${LANG_ENGLISH} " Installing"
; Installation Options page
LangString installation_options ${LANG_ENGLISH} "Installation Options"
LangString installation_options ${LANG_ENGLISH} " Installation Options"
LangString installation_options_prompt ${LANG_ENGLISH} "Configure your ${MUI_PRODUCT} installation"
LangString create_desktop_shortcut ${LANG_ENGLISH} "Create Desktop Shortcut"
LangString create_quick_launch_shortcut ${LANG_ENGLISH} "Create Quick Launch Shortcut"