ソースを参照

UI: Ensure last played date & time are always on 2 separate lines, for consistency.

Evan Husted 1 年間 前
コミット
23b0b22400
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/Ryujinx.UI.Common/App/ApplicationData.cs

+ 1 - 1
src/Ryujinx.UI.Common/App/ApplicationData.cs

@@ -38,7 +38,7 @@ namespace Ryujinx.UI.App.Common
 
 
         public string TimePlayedString => ValueFormatUtils.FormatTimeSpan(TimePlayed);
         public string TimePlayedString => ValueFormatUtils.FormatTimeSpan(TimePlayed);
 
 
-        public string LastPlayedString => ValueFormatUtils.FormatDateTime(LastPlayed) ?? LocalizedNever();
+        public string LastPlayedString => ValueFormatUtils.FormatDateTime(LastPlayed)?.Replace(" ", "\n") ?? LocalizedNever();
 
 
         public string FileSizeString => ValueFormatUtils.FormatFileSize(FileSize);
         public string FileSizeString => ValueFormatUtils.FormatFileSize(FileSize);