Skip to content

Commit

Permalink
Merge branch 'version-2.4.0' of https://github.com/pizzaboxer/bloxstrap
Browse files Browse the repository at this point in the history
… into version-2.4.0
  • Loading branch information
pizzaboxer committed Jul 16, 2023
2 parents 691d7be + 539d3ed commit 3422cdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions Bloxstrap/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,14 @@ void GlobalExceptionHandler(object sender, DispatcherUnhandledExceptionEventArgs

void FinalizeExceptionHandling(Exception exception)
{
#pragma warning disable 162
#if DEBUG
throw exception;
#endif

#else
if (!IsQuiet)
Controls.ShowExceptionDialog(exception);

Terminate(ErrorCode.ERROR_INSTALL_FAILURE);
#pragma warning restore 162
#endif
}

protected override void OnStartup(StartupEventArgs e)
Expand Down
2 changes: 1 addition & 1 deletion Bloxstrap/UI/Elements/Bootstrapper/FluentDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</Grid>

<Border Grid.Row="2" Padding="15" Background="{ui:ThemeResource SolidBackgroundFillColorSecondaryBrush}">
<Button Margin="0" Content="Cancel" Width="120" HorizontalAlignment="Right" IsEnabled="{Binding CancelButtonEnabled, Mode=OneWay}" Command="{Binding CancelInstallCommand}" />
<Button Margin="0" Content="Cancel" Width="120" HorizontalAlignment="Right" IsEnabled="{Binding CancelEnabled, Mode=OneWay}" Command="{Binding CancelInstallCommand}" />
</Border>
</Grid>
</ui:UiWindow>

0 comments on commit 3422cdc

Please sign in to comment.