mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 04:04:59 +00:00
fix: crash when clipboard is empty
This commit is contained in:
parent
254eac11a1
commit
68abb2d78b
1 changed files with 3 additions and 3 deletions
|
@ -128,10 +128,10 @@ namespace SourceGit.Views
|
|||
else if (e.Key == Key.V && ((OperatingSystem.IsMacOS() && e.KeyModifiers == KeyModifiers.Meta) || (!OperatingSystem.IsMacOS() && e.KeyModifiers == KeyModifiers.Control)))
|
||||
{
|
||||
var text = await App.GetClipboardTextAsync();
|
||||
text = text.Trim();
|
||||
|
||||
if (!string.IsNullOrEmpty(text))
|
||||
if (!string.IsNullOrWhiteSpace(text))
|
||||
{
|
||||
text = text.Trim();
|
||||
|
||||
if (SubjectEditor.CaretIndex == Subject.Length)
|
||||
{
|
||||
var idx = text.IndexOf('\n');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue