Starting on the Data portion

This commit is contained in:
2025-11-29 19:34:30 -06:00
parent aae22e57cf
commit c749434d07
7 changed files with 35 additions and 6 deletions

View File

@@ -60,8 +60,10 @@ public partial class MainWindow : Window
private void OnKeyDown(TopLevel topLevel, KeyEventArgs keyEventArgs)
{
if (keyEventArgs.Key == Key.OemTilde)
if (keyEventArgs.Key == Key.OemTilde && keyEventArgs.KeyModifiers.HasFlag(KeyModifiers.Control))
{
ToggleConsole(!_overlayContentControl.IsVisible);
}
}
private void InitControls()