Index: Application/Ringtoets/src/Application.Ringtoets/ExceptionDialog.cs =================================================================== diff -u -rf05844909ef96f5e6ea721563a33d32e042ef5ce -r5cd607fd7fb5d58d075d60161cf270f99a286273 --- Application/Ringtoets/src/Application.Ringtoets/ExceptionDialog.cs (.../ExceptionDialog.cs) (revision f05844909ef96f5e6ea721563a33d32e042ef5ce) +++ Application/Ringtoets/src/Application.Ringtoets/ExceptionDialog.cs (.../ExceptionDialog.cs) (revision 5cd607fd7fb5d58d075d60161cf270f99a286273) @@ -53,8 +53,11 @@ public ExceptionDialog(IWin32Window dialogParent, ICommandsOwner commands, Exception exception) : base(dialogParent, Resources.bug__exclamation, 470, 200) { this.commands = commands; + InitializeComponent(); + MinimizeBox = true; // Allows for minimizing the dialog parent + buttonOpenLog.Enabled = false; exceptionTextBox.Text = exception == null ? "" : exception.ToString(); }