Remove v1 hints

This commit is contained in:
Peter Kirmeier 2023-05-24 23:47:41 +02:00
parent f55af05bc3
commit f8d3457b13
2 changed files with 2 additions and 3 deletions

View file

@ -69,7 +69,7 @@ namespace SystemTrayMenu.Handler
internal void OpenSubMenuByMouse(RowData itemData)
{
timerStartLoad.Stop();
StopLoadMenu?.Invoke(); // TODO: Missing in v1 ?
StopLoadMenu?.Invoke();
SetData(itemData);
MouseActive = true;
OpenSubMenu();
@ -87,7 +87,7 @@ namespace SystemTrayMenu.Handler
private void OpenSubMenuByTimer(object? sender, EventArgs e)
{
timerStartLoad.Stop();
StopLoadMenu?.Invoke(); // TODO: Missing in v1 ?
StopLoadMenu?.Invoke();
OpenSubMenu();
}

View file

@ -121,7 +121,6 @@ namespace SystemTrayMenu.UserInterface.HotkeyTextboxControl
hotkeyString.Append("Shift").Append(" + ");
}
// TODO: Fix in v1? it seems LWin and RWin are checked with "==" instead of "& .. != 0"
if ((modifierKeyCode & ModifierKeys.Windows) != 0)
{
hotkeyString.Append("Win").Append(" + ");