Skip to content

Commit 3e2f099

Browse files
committed
some fixes
1 parent c379692 commit 3e2f099

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

DotPilot/Presentation/Shell/ViewModels/ShellViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public sealed class ShellViewModel : ObservableObject, IDisposable
77
{
88
private const string StartupTitleValue = "Preparing local runtime";
99
private const string StartupSummaryValue =
10-
"Loading workspace state and detecting installed CLI providers.";
10+
"Loading workspace state and detecting installed CLI providers in the background.";
1111
private const string LiveSessionIndicatorTitleValue = "Live session active";
1212
private const string LiveSessionSummaryFormat = "Running {0} in {1}.";
1313
private const string SleepPreventionSummaryFormat = "Keeping this machine awake while {0} runs in {1}.";

DotPilot/Presentation/Shell/Views/Shell.xaml

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -198,37 +198,36 @@
198198

199199
<Grid x:Name="StartupSplashScreen"
200200
AutomationProperties.AutomationId="StartupSplashScreen"
201-
Visibility="{Binding StartupOverlayVisibility}">
202-
<Border Background="{StaticResource AppShellBackgroundBrush}"
203-
Opacity="0.76" />
201+
Visibility="{Binding StartupOverlayVisibility}"
202+
IsHitTestVisible="False">
204203
<Border Style="{StaticResource GlassPanelStyle}"
205-
Width="420"
206-
MaxWidth="420"
207-
HorizontalAlignment="Center"
208-
VerticalAlignment="Center"
209-
Padding="24">
210-
<StackPanel Spacing="14">
204+
Width="360"
205+
MaxWidth="360"
206+
Margin="0,22,22,0"
207+
HorizontalAlignment="Right"
208+
VerticalAlignment="Top"
209+
Padding="16,14">
210+
<StackPanel Spacing="10">
211211
<StackPanel Orientation="Horizontal"
212-
Spacing="14">
213-
<ProgressRing Width="28"
214-
Height="28"
212+
Spacing="12">
213+
<ProgressRing Width="20"
214+
Height="20"
215215
IsActive="True" />
216216
<StackPanel Spacing="4">
217217
<TextBlock x:Name="StartupSplashTitleText"
218-
FontSize="20"
218+
FontSize="16"
219219
FontWeight="SemiBold"
220220
Text="{Binding StartupTitle}" />
221221
<TextBlock x:Name="StartupSplashSummaryText"
222+
MaxWidth="292"
222223
Foreground="{StaticResource AppMutedTextBrush}"
223224
Text="{Binding StartupSummary}"
224225
TextWrapping="WrapWholeWords" />
225226
</StackPanel>
226227
</StackPanel>
227228

228-
<Rectangle Style="{StaticResource SectionDividerStyle}" />
229-
230229
<TextBlock Foreground="{StaticResource AppSecondaryTextBrush}"
231-
Text="This runs once at startup and the app reuses the hydrated provider snapshot until you refresh it."
230+
Text="You can keep using the app while the startup snapshot warms up."
232231
TextWrapping="WrapWholeWords" />
233232
</StackPanel>
234233
</Border>

0 commit comments

Comments
 (0)