diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2021-12-18 14:51:07 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2022-01-05 10:46:54 +0100 |
commit | 3712808ad2933a7a866e36114fa3c63a8630137d (patch) | |
tree | 7c7591c7435cf5871e7d1bd6c86f0509bd8d0a62 | |
parent | b773416888ada3a9c89835b4860d6c76c171b351 (diff) | |
download | mariadb-git-3712808ad2933a7a866e36114fa3c63a8630137d.tar.gz |
Windows installer - fix UI of the "Uninstall" Dialog.
Give RemoveDatadirText field extra 10 pixels in height, to avoid
truncated display of directory path
-rw-r--r-- | win/packaging/extra.wxs.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/packaging/extra.wxs.in b/win/packaging/extra.wxs.in index 11fe60719ec..e886ed87d06 100644 --- a/win/packaging/extra.wxs.in +++ b/win/packaging/extra.wxs.in @@ -84,17 +84,17 @@ <Publish Event="EndDialog" Value="Return">NOT WixUI_InstallMode</Publish> </Control> - <Control Id="RemoveDatadirText" Type="Text" X="60" Y="85" Width="280" Height="20"> - <Text>Remove default database directory [DATADIR]. Ensures proper cleanup on uninstall.</Text> + <Control Id="RemoveDatadirText" Type="Text" X="60" Y="85" Width="280" Height="30"> + <Text>Remove [DATADIR]. Ensures proper cleanup on uninstall.</Text> </Control> - <Control Id="KeepDatadirButton" Type="PushButton" X="40" Y="118" Width="80" Height="18" + <Control Id="KeepDatadirButton" Type="PushButton" X="40" Y="128" Width="80" Height="18" Text="Keep data"> <Publish Property="CLEANUPDATA">1</Publish> <Publish Event="NewDialog" Value="VerifyReadyDlg">WixUI_InstallMode</Publish> <Publish Event="EndDialog" Value="Return">NOT WixUI_InstallMode</Publish> </Control> - <Control Id="KeepDataDirText" Type="Text" X="60" Y="138" Width="280" Height="70" > + <Control Id="KeepDataDirText" Type="Text" X="60" Y="148" Width="280" Height="70" > <Text>Do not remove [DATADIR]. Choose this option if you intend to use data in the future</Text> </Control> |