mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Fix Windows Agent resize behavior
This fixes the Windows Agent behavior when resizing refs #4959
This commit is contained in:
parent
14d88d90a0
commit
91ead3a3b7
@ -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
|
||||
|
@ -576,6 +576,12 @@ namespace Icinga
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void SetupWizard_Load(object sender, EventArgs e)
|
||||
{
|
||||
this.MinimumSize = this.Size;
|
||||
this.MaximumSize = this.Size;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user