mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
Changed mouse hover events for some controls
This commit is contained in:
parent
0fc4cb1e32
commit
bd48966c7d
@ -409,13 +409,28 @@ namespace DS4Windows
|
||||
|
||||
foreach (Control control in fLPSettings.Controls)
|
||||
{
|
||||
string tempst;
|
||||
if (control.HasChildren)
|
||||
{
|
||||
foreach (Control ctrl in control.Controls)
|
||||
ctrl.MouseHover += Items_MouseHover;
|
||||
{
|
||||
if (hoverTextDict.TryGetValue(ctrl, out tempst))
|
||||
{
|
||||
ctrl.MouseHover += Items_MouseHover;
|
||||
}
|
||||
else
|
||||
{
|
||||
ctrl.MouseHover += ClearLastMessage;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (hoverTextDict.TryGetValue(control, out tempst))
|
||||
control.MouseEnter += Items_MouseHover;
|
||||
else
|
||||
control.MouseHover += ClearLastMessage;
|
||||
}
|
||||
|
||||
control.MouseHover += Items_MouseHover;
|
||||
}
|
||||
}
|
||||
|
||||
@ -447,6 +462,12 @@ namespace DS4Windows
|
||||
g.DrawImage(shield, new Rectangle(0, 0, finalWidth, finalHeight));
|
||||
}
|
||||
|
||||
private void ClearLastMessage(object sender, EventArgs e)
|
||||
{
|
||||
lbLastMessage.Text = "";
|
||||
lbLastMessage.ForeColor = SystemColors.GrayText;
|
||||
}
|
||||
|
||||
private void blankControllerTab()
|
||||
{
|
||||
for (int Index = 0, PadsLen = Pads.Length;
|
||||
|
Loading…
Reference in New Issue
Block a user