Skip to content

Commit

Permalink
WiX: Fix verify dialog message
Browse files Browse the repository at this point in the history
We removed the `<Condition Action="show">` in 255e0dc but forgot to
make the control not hidden by default.

Signed-off-by: Mark Yen <[email protected]>
Fixes: 255e0dc
  • Loading branch information
mook-as committed Jan 22, 2025
1 parent 35fa88f commit 9e860c8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build/wix/verify.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
X="0" Y="44" Width="370" Height="0" />

<Control Id="InstallText" Type="Text"
X="25" Y="70" Width="320" Height="80" Hidden="yes" NoPrefix="yes"
Text="!(loc.VerifyReadyDlgInstallText)">
</Control>
X="25" Y="70" Width="320" Height="80" NoPrefix="yes"
Text="!(loc.VerifyReadyDlgInstallText)" />

<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
<Control Id="Back" Type="PushButton" X="156" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)">
Expand Down

0 comments on commit 9e860c8

Please sign in to comment.