Skip to content

Commit d360ff6

Browse files
authored
Fix: Fixed mica in properties window (#10659)
1 parent f0d1d84 commit d360ff6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Files.App/Helpers/FilePropertiesHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public static async Task OpenPropertiesWindowAsync(object item, IShellPage assoc
7272
MinWidth = 460,
7373
MinHeight = 550,
7474
Content = frame,
75-
Backdrop = new WinUIEx.MicaSystemBackdrop{ DarkTintOpacity = 0.8 },
75+
Backdrop = new WinUIEx.MicaSystemBackdrop(),
7676
};
7777

7878
var appWindow = propertiesWindow.AppWindow;

src/Files.App/Views/Pages/PropertiesSecurity.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private void OpenAdvancedProperties()
108108
propertiesWindow.MinHeight = 550;
109109

110110
// Set backdrop
111-
propertiesWindow.Backdrop = new WinUIEx.MicaSystemBackdrop() { DarkTintOpacity = 0.8 };
111+
propertiesWindow.Backdrop = new WinUIEx.MicaSystemBackdrop();
112112

113113
appWindow.TitleBar.ExtendsContentIntoTitleBar = true;
114114

0 commit comments

Comments
 (0)