fix(ui): restore resize and full-width rows in WorktreesOverview modal

This commit is contained in:
mika kuns
2026-05-30 17:16:08 +02:00
parent 7af892f410
commit 16717ab9e9

View File

@@ -10,7 +10,7 @@
CanResize="True" CanResize="True"
WindowStartupLocation="CenterOwner" WindowStartupLocation="CenterOwner"
Background="{DynamicResource SurfaceBrush}" Background="{DynamicResource SurfaceBrush}"
WindowDecorations="None" WindowDecorations="BorderOnly"
ExtendClientAreaToDecorationsHint="True"> ExtendClientAreaToDecorationsHint="True">
<Window.Resources> <Window.Resources>
@@ -166,7 +166,8 @@
<ItemsControl ItemsSource="{Binding Groups}" IsVisible="{Binding IsGlobal}"> <ItemsControl ItemsSource="{Binding Groups}" IsVisible="{Binding IsGlobal}">
<ItemsControl.ItemTemplate> <ItemsControl.ItemTemplate>
<DataTemplate DataType="vm:WorktreesGroupViewModel"> <DataTemplate DataType="vm:WorktreesGroupViewModel">
<Expander Header="{Binding ListName}" IsExpanded="True" Margin="0,0,0,6"> <Expander Header="{Binding ListName}" IsExpanded="True" Margin="0,0,0,6"
HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch">
<ItemsControl ItemsSource="{Binding Rows}"> <ItemsControl ItemsSource="{Binding Rows}">
<ItemsControl.ItemTemplate> <ItemsControl.ItemTemplate>
<DataTemplate DataType="vm:WorktreeOverviewRowViewModel"> <DataTemplate DataType="vm:WorktreeOverviewRowViewModel">