Skip to content

Commit

Permalink
Appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
clover-yan committed Jun 3, 2023
1 parent 38bad49 commit 511f65b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DateCountdown/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ private void Window_Loaded(object sender, RoutedEventArgs e)

if (App.StartArgs.Contains("-b"))
{
TextBlockTitle.Effect = AfterText.Effect = TextBlockCopyright.Effect = new DropShadowEffect { Color = light ? Colors.Black : Colors.White, Direction = 320, ShadowDepth = 0, BlurRadius = 5 };
TextBlockDays.Effect = TextBlockDaysDetails.Effect = new DropShadowEffect { Color = light ? Colors.White : Colors.Black, Direction = 320, ShadowDepth = 0, BlurRadius = 5 };
TextBlockTitle.Effect = AfterText.Effect = TextBlockCopyright.Effect = new DropShadowEffect { Color = light ? Colors.Black : Colors.White, Direction = 320, ShadowDepth = 0, BlurRadius = 5, Opacity = alpha ? 0.5 : 1 };
TextBlockDays.Effect = TextBlockDaysDetails.Effect = new DropShadowEffect { Color = light ? Colors.White : Colors.Black, Direction = 320, ShadowDepth = 0, BlurRadius = 5, Opacity = alpha ? 0.5 : 1 };
}

// if (App.StartArgs.Contains("-jf"))
Expand Down

0 comments on commit 511f65b

Please sign in to comment.