Skip to content

Commit

Permalink
Fix empty button issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jsidewhite committed Apr 16, 2024
1 parent 569ced0 commit a865dd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ await _windowEx.DispatcherQueue.EnqueueAsync(() =>
else
{
SessionStateText = GetStatusString("FeatureNotSupported");
QuietButtonText = GetString("QuietBackgroundProcesses_QuietButton_Start");
}
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<StackPanel Orientation="Horizontal">
<TextBlock
Text="{x:Bind ViewModel.SessionStateText, Mode=OneWay}"
Foreground="{StaticResource AccentTextFillColorTertiaryBrush}"
Foreground="{ThemeResource AccentTextFillColorTertiaryBrush}"
Margin="{StaticResource MediumLeftRightMargin}"
VerticalAlignment="Center"
TextTrimming="CharacterEllipsis" />
Expand Down

0 comments on commit a865dd8

Please sign in to comment.