mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 21:55:03 +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();
|
this.tabError.PerformLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.picBanner)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.picBanner)).EndInit();
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
this.Load += new System.EventHandler(this.SetupWizard_Load);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#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