Skip to content

Commit 0be851d

Browse files
Merge pull request #113 from nullinside-development-group/feat/icon
bug: fixing loading icons
2 parents 475c4ef + 76d538a commit 0be851d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TwitchStreamingTools/Views/Pages/AccountView.axaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
DockPanel.Dock="Top"
2626
Spacing="15">
2727
<Image Width="200" Source="/Assets/twitch-wordart.png" />
28-
<controls:Loading IsVisible="{Binding !LoggingIn}" Width="50" Height="50" />
28+
<controls:Loading IsVisible="{Binding LoggingIn}" Width="75" Height="75" />
2929
<Button IsVisible="{Binding !HasValidOAuthToken}"
3030
IsEnabled="{Binding !LoggingIn}"
3131
Command="{Binding OnPerformLogin}"
@@ -34,7 +34,7 @@
3434
Login
3535
</Button>
3636
<StackPanel IsVisible="{Binding HasValidOAuthToken}" Spacing="5">
37-
<controls:Loading IsVisible="{Binding DownloadingProfileImage}" />
37+
<controls:Loading IsVisible="{Binding DownloadingProfileImage}" Width="75" Height="75" />
3838
<Border CornerRadius="75" Width="150" ClipToBounds="True" IsVisible="{Binding !DownloadingProfileImage}">
3939
<Image Source="{Binding ProfileImage}" />
4040
</Border>

0 commit comments

Comments
 (0)