Browse Source

fix #557: Exception type not visible in 'break on handled' checkbox if type name is too long

Use AutoSize instead of AutoEllipsis so the text stays in one line.
pull/567/head
Siegfried Pammer 12 years ago
parent
commit
ed94285be8
  1. 6
      src/AddIns/Debugger/Debugger.AddIn/Service/DebuggeeExceptionForm.Designer.cs

6
src/AddIns/Debugger/Debugger.AddIn/Service/DebuggeeExceptionForm.Designer.cs generated

@ -117,9 +117,10 @@ namespace ICSharpCode.SharpDevelop.Services
// //
this.chkBreakOnHandled.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) this.chkBreakOnHandled.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.chkBreakOnHandled.Location = new System.Drawing.Point(4, 350); this.chkBreakOnHandled.AutoSize = true;
this.chkBreakOnHandled.Location = new System.Drawing.Point(4, 357);
this.chkBreakOnHandled.Name = "chkBreakOnHandled"; this.chkBreakOnHandled.Name = "chkBreakOnHandled";
this.chkBreakOnHandled.Size = new System.Drawing.Size(635, 24); this.chkBreakOnHandled.Size = new System.Drawing.Size(80, 17);
this.chkBreakOnHandled.TabIndex = 6; this.chkBreakOnHandled.TabIndex = 6;
this.chkBreakOnHandled.Text = "checkBox1"; this.chkBreakOnHandled.Text = "checkBox1";
this.chkBreakOnHandled.UseVisualStyleBackColor = true; this.chkBreakOnHandled.UseVisualStyleBackColor = true;
@ -141,6 +142,7 @@ namespace ICSharpCode.SharpDevelop.Services
this.Resize += new System.EventHandler(this.FormResize); this.Resize += new System.EventHandler(this.FormResize);
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout();
} }
private System.Windows.Forms.Button btnContinue; private System.Windows.Forms.Button btnContinue;

Loading…
Cancel
Save