Input Widget - restore tooltip functionality that got deleted at some point

This commit is contained in:
adelikat 2014-05-05 21:43:46 +00:00
parent 39589317ef
commit 48365516c0
1 changed files with 2 additions and 0 deletions

View File

@ -117,6 +117,7 @@ namespace BizHawk.Client.EmuHawk
{
ClearBindings();
Text = string.Empty;
_tooltip1.SetToolTip(this, string.Empty);
}
/// <summary>
@ -245,6 +246,7 @@ namespace BizHawk.Client.EmuHawk
public void UpdateLabel()
{
Text = string.Join(",", _bindings.Where(str => !string.IsNullOrWhiteSpace(str)));
_tooltip1.SetToolTip(this, Text);
}
protected override void OnKeyPress(KeyPressEventArgs e)