Changed behavior to accept keyboard overrides, added keyboard mouse state validator and indirect rules to allow keyboard and mouse navigation

This commit is contained in:
Ano-sys
2026-04-03 02:22:57 +02:00
parent 162df64596
commit d25e8238f2
4 changed files with 213 additions and 75 deletions
-1
View File
@@ -101,7 +101,6 @@ public partial class MainWindowViewModel : ViewModelBase
public async Task TryFocusImage(int index)
{
if (index < 0 || index >= Photos.Count ) return;
// if(SelectedPhoto != null) ResetSelectedPhoto();
SelectedPhoto = Photos[index];
await SelectedPhoto.LoadFullImage();
}