Small UI adjustment for account menu progress.

This commit is contained in:
Burak Kaan Köse
2026-04-12 01:38:18 +02:00
parent c8ab214651
commit 678245d1fa
+12 -6
View File
@@ -66,12 +66,14 @@
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="10" />
</Grid.RowDefinitions>
<!--<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>-->
<StackPanel VerticalAlignment="Center">
<TextBlock
x:Name="AccountNameTextblock"
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightByChildSelectedState(IsSelected), Mode=OneWay}"
@@ -89,14 +91,18 @@
TextTrimming="CharacterEllipsis" />
<ProgressBar
Grid.Row="2"
Grid.Row="1"
Height="3"
Margin="0,4,0,0"
VerticalAlignment="Bottom"
IsIndeterminate="{x:Bind IsProgressIndeterminate, Mode=OneWay}"
ShowError="False"
ShowPaused="False"
Visibility="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}"
Value="{x:Bind SynchronizationProgressValue, Mode=OneWay}" />
</StackPanel>
</Grid>
<Button