瀏覽代碼

misc: chore: remove needless call to string.Format

Evan Husted 1 年之前
父節點
當前提交
bf584442b2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Ryujinx/UI/Windows/XCITrimmerWindow.axaml.cs

+ 1 - 1
src/Ryujinx/UI/Windows/XCITrimmerWindow.axaml.cs

@@ -36,7 +36,7 @@ namespace Ryujinx.Ava.UI.Windows
                 SecondaryButtonText = string.Empty,
                 CloseButtonText = string.Empty,
                 Content = new XCITrimmerWindow(RyujinxApp.MainWindow.ViewModel),
-                Title = string.Format(LocaleManager.Instance[LocaleKeys.XCITrimmerWindowTitle]),
+                Title = LocaleManager.Instance[LocaleKeys.XCITrimmerWindowTitle]
             };
 
             Style bottomBorder = new(x => x.OfType<Grid>().Name("DialogSpace").Child().OfType<Border>());