5.4.9.7 Beta
This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
|
|
||||||
5.4.9.7 Beta (2021-??-??)
|
5.4.9.8 Beta (2021-??-??)
|
||||||
|
|
||||||
|
5.4.9.7 Beta (2021-08-28)
|
||||||
|
|
||||||
|
- Fix exception closing command palette on Windows 7.
|
||||||
|
|
||||||
|
|
||||||
5.4.9.6 Beta (2021-08-26)
|
5.4.9.6 Beta (2021-08-26)
|
||||||
|
|
||||||
|
|||||||
@@ -1148,6 +1148,15 @@ namespace mpvnet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
return base.ProcessCmdKey(ref msg, keyData);
|
||||||
|
} catch (Exception) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[DllImport("user32.dll")]
|
[DllImport("user32.dll")]
|
||||||
public static extern bool SetLayeredWindowAttributes(IntPtr hWnd, int crKey, byte alpha, int dwFlags);
|
public static extern bool SetLayeredWindowAttributes(IntPtr hWnd, int crKey, byte alpha, int dwFlags);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("5.4.9.6")]
|
[assembly: AssemblyVersion("5.4.9.7")]
|
||||||
[assembly: AssemblyFileVersion("5.4.9.6")]
|
[assembly: AssemblyFileVersion("5.4.9.7")]
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ namespace mpvnet
|
|||||||
|
|
||||||
EscapeCommand = new RelayCommand(OnEscapeCommand);
|
EscapeCommand = new RelayCommand(OnEscapeCommand);
|
||||||
ExecuteCommand = new RelayCommand(OnExecuteCommand);
|
ExecuteCommand = new RelayCommand(OnExecuteCommand);
|
||||||
|
|
||||||
SearchControl.SearchTextBox.PreviewKeyDown += SearchTextBox_PreviewKeyDown;
|
SearchControl.SearchTextBox.PreviewKeyDown += SearchTextBox_PreviewKeyDown;
|
||||||
SearchControl.SearchTextBox.TextChanged += SearchTextBox_TextChanged;
|
SearchControl.SearchTextBox.TextChanged += SearchTextBox_TextChanged;
|
||||||
SearchControl.HideClearButton = true;
|
SearchControl.HideClearButton = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user