feat(ui): open Mission Control from the title bar

This commit is contained in:
Mika Kuns
2026-06-25 15:05:40 +02:00
parent 283310a3fd
commit b1bd91292f
8 changed files with 44 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
using System.Threading.Tasks;
using ClaudeDo.Ui.ViewModels;
using ClaudeDo.Ui.ViewModels.Conflicts;
using ClaudeDo.Ui.ViewModels.Modals;
@@ -28,4 +29,7 @@ public interface IDialogService
/// <summary>Modal error notice with a single dismiss button.</summary>
Task ShowErrorAsync(string message);
/// <summary>Show (or re-show + focus) the modeless Mission Control window. Lazily created; hides on close.</summary>
void ShowMissionControl(MissionControlViewModel vm);
}