mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Merge pull request #6469 from Icinga/fix/windows-resize-behavior
Fix Windows Agent resize behavior
This commit is contained in:
commit
d7fad934bf
@ -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