Linux: Fixed mouse over tooltip in debugger
This commit is contained in:
parent
8a268bbd2d
commit
4dee31414f
3 changed files with 6 additions and 5 deletions
|
@ -265,11 +265,9 @@ namespace Mesen.GUI.Debugger
|
|||
_codeTooltip = null;
|
||||
}
|
||||
_codeTooltip = new frmCodeTooltip(values);
|
||||
_codeTooltip.Width = 0;
|
||||
_codeTooltip.Height = 0;
|
||||
_codeTooltip.Visible = false;
|
||||
_codeTooltip.Left = Cursor.Position.X + 10;
|
||||
_codeTooltip.Top = Cursor.Position.Y + 10;
|
||||
_codeTooltip.Show(this);
|
||||
_codeTooltip.Visible = true;
|
||||
}
|
||||
_codeTooltip.Left = Cursor.Position.X + 10;
|
||||
_codeTooltip.Top = Cursor.Position.Y + 10;
|
||||
|
|
2
GUI.NET/Debugger/frmCodeTooltip.Designer.cs
generated
2
GUI.NET/Debugger/frmCodeTooltip.Designer.cs
generated
|
@ -50,7 +50,6 @@
|
|||
this.tlpMain.ColumnCount = 2;
|
||||
this.tlpMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
||||
this.tlpMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
||||
this.tlpMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tlpMain.Location = new System.Drawing.Point(0, 0);
|
||||
this.tlpMain.Name = "tlpMain";
|
||||
this.tlpMain.RowCount = 2;
|
||||
|
@ -74,6 +73,7 @@
|
|||
this.Name = "frmCodeTooltip";
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
||||
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
||||
this.Text = "frmCodeTooltip";
|
||||
this.panel1.ResumeLayout(false);
|
||||
|
|
|
@ -53,6 +53,9 @@ namespace Mesen.GUI.Debugger
|
|||
|
||||
i++;
|
||||
}
|
||||
|
||||
this.Width = this.tlpMain.Width;
|
||||
this.Height = this.tlpMain.Height;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue