Select item upon entering container

This commit is contained in:
2022-05-24 18:40:24 +02:00
parent 8167909781
commit c08e345c2f
10 changed files with 127 additions and 25 deletions

View File

@@ -62,7 +62,7 @@ public class CommandScheduler : ICommandScheduler
await batchToAdd.AddCommand(command);
await RefreshCommands();
ExecuteCommands();
/*if (_commandRunners.Count == 0)

View File

@@ -11,7 +11,7 @@ public class LocalCommandExecutor : ILocalCommandExecutor
{
_commandRunner = commandRunner;
}
public void ExecuteCommand(ICommand command)
{
var context = new CommandRunnerContext(command);
@@ -27,8 +27,8 @@ public class LocalCommandExecutor : ILocalCommandExecutor
{
await _commandRunner.RunCommandAsync(context.Command);
}
catch(Exception ex){}
catch (Exception ex) { }
CommandFinished.Invoke(this, context.Command);
}
}