The event handler meant to toggle the section's expanded state on mouse double

click was hooked to the wrong event.

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
This commit is contained in:
Konstantina Chremmou 2018-12-04 14:34:12 +00:00 committed by Mihaela Stoica
parent d08efd4a86
commit 83732625ac

View File

@ -63,7 +63,7 @@ namespace XenAdmin.Controls
this.panel1.Controls.Add(this.label1);
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
this.panel1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDoubleClick);
this.panel1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDoubleClick);
//
// groupBox1
//