@@ -674,7 +674,7 @@ private void SetBlurForWindow(string theme, BackdropTypes backdropType)
674674 if ( backdropType == BackdropTypes . Mica || backdropType == BackdropTypes . MicaAlt )
675675 {
676676 windowBorderStyle . Setters . Remove ( windowBorderStyle . Setters . OfType < Setter > ( ) . FirstOrDefault ( x => x . Property == Control . BackgroundProperty ) ) ;
677- windowBorderStyle . Setters . Add ( new Setter ( Border . BackgroundProperty , ThemeHelper . GetFreezeSolidColorBrush ( Color . FromArgb ( 1 , 0 , 0 , 0 ) ) ) ) ;
677+ windowBorderStyle . Setters . Add ( new Setter ( Border . BackgroundProperty , ThemeHelper . GetFrozenSolidColorBrush ( Color . FromArgb ( 1 , 0 , 0 , 0 ) ) ) ) ;
678678 }
679679 else if ( backdropType == BackdropTypes . Acrylic )
680680 {
@@ -803,7 +803,7 @@ private void ApplyPreviewBackground(Color? bgColor = null)
803803
804804 // Apply background color (remove transparency in color)
805805 var backgroundColor = Color . FromRgb ( bgColor . Value . R , bgColor . Value . G , bgColor . Value . B ) ;
806- previewStyle . Setters . Add ( new Setter ( Border . BackgroundProperty , ThemeHelper . GetFreezeSolidColorBrush ( backgroundColor ) ) ) ;
806+ previewStyle . Setters . Add ( new Setter ( Border . BackgroundProperty , ThemeHelper . GetFrozenSolidColorBrush ( backgroundColor ) ) ) ;
807807
808808 // The blur theme keeps the corner round fixed (applying DWM code to modify it causes rendering issues).
809809 // The non-blur theme retains the previously set WindowBorderStyle.
@@ -902,11 +902,11 @@ private void ColorizeWindow(string theme, BackdropTypes backdropType)
902902 // Only set the background to transparent if the theme supports blur
903903 if ( backdropType == BackdropTypes . Mica || backdropType == BackdropTypes . MicaAlt )
904904 {
905- mainWindow . Background = ThemeHelper . GetFreezeSolidColorBrush ( Color . FromArgb ( 1 , 0 , 0 , 0 ) ) ;
905+ mainWindow . Background = ThemeHelper . GetFrozenSolidColorBrush ( Color . FromArgb ( 1 , 0 , 0 , 0 ) ) ;
906906 }
907907 else
908908 {
909- mainWindow . Background = ThemeHelper . GetFreezeSolidColorBrush ( selectedBG ) ;
909+ mainWindow . Background = ThemeHelper . GetFrozenSolidColorBrush ( selectedBG ) ;
910910 }
911911 }
912912 }
0 commit comments