mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-09 15:51:59 +00:00
UI: Ensure last played date & time are always on 2 separate lines, for consistency.
This commit is contained in:
parent
3dfbf55611
commit
23b0b22400
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ namespace Ryujinx.UI.App.Common
|
|||
|
||||
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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue