Merge pull request #6469 from Icinga/fix/windows-resize-behavior

Fix Windows Agent resize behavior
This commit is contained in:
Jean Flach 2018-08-22 12:49:45 +02:00 committed by GitHub
commit d7fad934bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -746,7 +746,7 @@
this.tabError.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picBanner)).EndInit();
this.ResumeLayout(false);
this.Load += new System.EventHandler(this.SetupWizard_Load);
}
#endregion

View File

@ -576,6 +576,12 @@ namespace Icinga
{
}
private void SetupWizard_Load(object sender, EventArgs e)
{
this.MinimumSize = this.Size;
this.MaximumSize = this.Size;
}
}
}