Skip to content

Commit 3712808

Browse files
committed
Windows installer - fix UI of the "Uninstall" Dialog.
Give RemoveDatadirText field extra 10 pixels in height, to avoid truncated display of directory path
1 parent b773416 commit 3712808

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

win/packaging/extra.wxs.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,17 +84,17 @@
8484
<Publish Event="EndDialog" Value="Return">NOT WixUI_InstallMode</Publish>
8585

8686
</Control>
87-
<Control Id="RemoveDatadirText" Type="Text" X="60" Y="85" Width="280" Height="20">
88-
<Text>Remove default database directory [DATADIR]. Ensures proper cleanup on uninstall.</Text>
87+
<Control Id="RemoveDatadirText" Type="Text" X="60" Y="85" Width="280" Height="30">
88+
<Text>Remove [DATADIR]. Ensures proper cleanup on uninstall.</Text>
8989
</Control>
9090

91-
<Control Id="KeepDatadirButton" Type="PushButton" X="40" Y="118" Width="80" Height="18"
91+
<Control Id="KeepDatadirButton" Type="PushButton" X="40" Y="128" Width="80" Height="18"
9292
Text="Keep data">
9393
<Publish Property="CLEANUPDATA">1</Publish>
9494
<Publish Event="NewDialog" Value="VerifyReadyDlg">WixUI_InstallMode</Publish>
9595
<Publish Event="EndDialog" Value="Return">NOT WixUI_InstallMode</Publish>
9696
</Control>
97-
<Control Id="KeepDataDirText" Type="Text" X="60" Y="138" Width="280" Height="70" >
97+
<Control Id="KeepDataDirText" Type="Text" X="60" Y="148" Width="280" Height="70" >
9898
<Text>Do not remove [DATADIR]. Choose this option if you intend to use data in the future</Text>
9999
</Control>
100100

0 commit comments

Comments
 (0)