Skip to content

Commit

Permalink
クリップボードの履歴をそれぞれ50文字で省略するようにした。
Browse files Browse the repository at this point in the history
  • Loading branch information
finalstream committed Jan 9, 2017
1 parent 9bd7e2a commit cd6e7cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExplorerWindowCleaner/ClipboardHistoryItem.cs
Expand Up @@ -18,7 +18,7 @@ public ClipboardHistoryItem(string text)

public override string ToString()
{
return _textData.Length <= 100 ? _textData : _textData.Substring(0, 100) + " ...";
return _textData.Length <= 50 ? _textData : _textData.Substring(0, 50) + " ...";
}

public string GetText()
Expand Down

0 comments on commit cd6e7cf

Please sign in to comment.