From bddab24d48a57c65cf7bfa303d3361774af64b38 Mon Sep 17 00:00:00 2001 From: David Sparer Date: Sun, 2 Sep 2018 17:15:16 -0500 Subject: [PATCH] explicitly set the max size of toolbar items to infinite i guess the default max size is height:25. When we don't explicitly set this to 0 it doesn't scale correctly --- mRemoteV1/UI/Forms/frmMain.Designer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mRemoteV1/UI/Forms/frmMain.Designer.cs b/mRemoteV1/UI/Forms/frmMain.Designer.cs index 9333e23d..2c8fe084 100644 --- a/mRemoteV1/UI/Forms/frmMain.Designer.cs +++ b/mRemoteV1/UI/Forms/frmMain.Designer.cs @@ -149,6 +149,7 @@ namespace mRemoteNG.UI.Forms this._quickConnectToolStrip.Dock = System.Windows.Forms.DockStyle.None; this._quickConnectToolStrip.ForeColor = System.Drawing.SystemColors.ControlText; this._quickConnectToolStrip.Location = new System.Drawing.Point(3, 0); + this._quickConnectToolStrip.MaximumSize = new System.Drawing.Size(0, 0); this._quickConnectToolStrip.Name = "_quickConnectToolStrip"; this._quickConnectToolStrip.Size = new System.Drawing.Size(364, 25); this._quickConnectToolStrip.TabIndex = 18; @@ -169,6 +170,7 @@ namespace mRemoteNG.UI.Forms this._externalToolsToolStrip.Dock = System.Windows.Forms.DockStyle.None; this._externalToolsToolStrip.ForeColor = System.Drawing.SystemColors.ControlText; this._externalToolsToolStrip.Location = new System.Drawing.Point(39, 74); + this._externalToolsToolStrip.MaximumSize = new System.Drawing.Size(0, 0); this._externalToolsToolStrip.Name = "_externalToolsToolStrip"; this._externalToolsToolStrip.Size = new System.Drawing.Size(111, 25); this._externalToolsToolStrip.TabIndex = 17;