fixed space to play
This commit is contained in:
@@ -230,6 +230,7 @@
|
||||
GridLinesVisibility="None"
|
||||
VirtualizingPanel.ScrollUnit="Pixel"
|
||||
PreviewMouseWheel="SmoothList_PreviewMouseWheel"
|
||||
PreviewKeyDown="TrackGrid_PreviewKeyDown"
|
||||
ScrollViewer.HorizontalScrollBarVisibility="Auto"
|
||||
ScrollViewer.VerticalScrollBarVisibility="Auto">
|
||||
<DataGrid.RowStyle>
|
||||
|
||||
@@ -403,6 +403,13 @@ public partial class MainWindow : FluentWindow
|
||||
/// Windows has associated with .mkv files (typically the default video
|
||||
/// player), so the user can quickly preview a file without leaving the app.
|
||||
/// </summary>
|
||||
private void TrackGrid_PreviewKeyDown(object sender, System.Windows.Input.KeyEventArgs e)
|
||||
{
|
||||
if (e.Key != System.Windows.Input.Key.Space) return;
|
||||
OpenSelectedFileInDefaultPlayer();
|
||||
e.Handled = true;
|
||||
}
|
||||
|
||||
private void OpenSelectedFileInDefaultPlayer()
|
||||
{
|
||||
if (FileQueueList.SelectedItem is not QueuedFileItem item) return;
|
||||
|
||||
Reference in New Issue
Block a user