소스 검색

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>());