tastudio: don't tell about clipboard if it's empty

This commit is contained in:
feos 2019-01-23 17:24:21 +03:00
parent 9955c55a0a
commit 766de68e18
1 changed files with 3 additions and 2 deletions

View File

@ -990,8 +990,9 @@ namespace BizHawk.Client.EmuHawk
"Selected: " + TasView.SelectedRows.Count() + " frame" +
(TasView.SelectedRows.Count() == 1 ? "" : "s") +
", States: " + CurrentTasMovie.TasStateManager.StateCount.ToString() +
", Clipboard: " + (_tasClipboard.Any() ? _tasClipboard.Count + " frame" +
(_tasClipboard.Count == 1 ? "" : "s") : "empty");
(_tasClipboard.Any()
? ", Clipboard: " + _tasClipboard.Count + " frame" + (_tasClipboard.Count == 1 ? "" : "s")
: "");
}
private void UpdateChangesIndicator()