@@ -265,7 +265,7 @@ private void OnCloseExecuted(object sender, ExecutedRoutedEventArgs e)
265
265
Close ( ) ;
266
266
}
267
267
268
- private void OpenPluginFolder ( object sender , RoutedEventArgs e )
268
+ private void OpenThemeFolder ( object sender , RoutedEventArgs e )
269
269
{
270
270
PluginManager . API . OpenDirectory ( Path . Combine ( DataLocation . DataDirectory ( ) , Constant . Themes ) ) ;
271
271
}
@@ -277,7 +277,7 @@ private void OpenSettingFolder(object sender, RoutedEventArgs e)
277
277
278
278
private void OpenLogFolder ( object sender , RoutedEventArgs e )
279
279
{
280
- PluginManager . API . OpenDirectory ( Path . Combine ( DataLocation . DataDirectory ( ) , Constant . Logs ) ) ;
280
+ PluginManager . API . OpenDirectory ( Path . Combine ( DataLocation . DataDirectory ( ) , Constant . Logs , Constant . Version ) ) ;
281
281
}
282
282
283
283
private void OnPluginStoreRefreshClick ( object sender , RoutedEventArgs e )
@@ -308,9 +308,9 @@ private void OnExternalPluginInstallClick(object sender, RoutedEventArgs e)
308
308
309
309
private void DarkModeSelectedIndexChanged ( object sender , EventArgs e ) => ThemeManager . Current . ApplicationTheme = settings . DarkMode switch
310
310
{
311
- " Light" => ApplicationTheme . Light ,
312
- " Dark" => ApplicationTheme . Dark ,
313
- " System" => null ,
311
+ Constant . Light => ApplicationTheme . Light ,
312
+ Constant . Dark => ApplicationTheme . Dark ,
313
+ Constant . System => null ,
314
314
_ => ThemeManager . Current . ApplicationTheme
315
315
} ;
316
316
0 commit comments