Skip to content

Commit e69355c

Browse files
committed
Fixed download progress bar in splash screen
1 parent bbd9c17 commit e69355c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

FluentStore.App/Views/SplashScreen.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ private void ProgressMessage_Recieved(object recipient, PluginDownloadProgressMe
4242
else
4343
{
4444
ProgressIndicator.IsIndeterminate = false;
45-
ProgressIndicator.Value = message.Downloaded / (double)message.Total;
45+
ProgressIndicator.Value = 100 * message.Downloaded / (double)message.Total;
4646
}
4747

4848
StatusBlock.Text = $"Downloading {message.PluginId} plugin...";

0 commit comments

Comments
 (0)