mirror of
https://github.com/greenshot/greenshot
synced 2025-07-06 04:52:16 -07:00
Fix for #390 by limiting the length of the displayed title.
This commit is contained in:
parent
60956771c8
commit
8014199bb6
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ namespace Greenshot.Editor.Destinations
|
|||
return Language.GetString(LangKey.settings_destination_editor);
|
||||
}
|
||||
|
||||
return Language.GetString(LangKey.settings_destination_editor) + " - " + editor.CaptureDetails.Title;
|
||||
return Language.GetString(LangKey.settings_destination_editor) + " - " + editor.CaptureDetails.Title?.Substring(0, Math.Min(20, editor.CaptureDetails.Title.Length));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue