refactor(ui): migrate UnfinishedPlanningModal to ModalShell

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
mika kuns
2026-05-30 16:45:16 +02:00
parent 538839c004
commit 50e05b9140
2 changed files with 22 additions and 68 deletions

View File

@@ -1,5 +1,4 @@
using Avalonia.Controls;
using Avalonia.Input;
namespace ClaudeDo.Ui.Views.Modals;
@@ -14,10 +13,4 @@ public partial class UnfinishedPlanningModalView : Window
vm.CloseAction = () => Close();
};
}
private void TitleBar_PointerPressed(object? sender, PointerPressedEventArgs e)
{
if (e.GetCurrentPoint(this).Properties.IsLeftButtonPressed)
BeginMoveDrag(e);
}
}