mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
fixed text field crash when pasting an empty clipboard
This commit is contained in:
parent
98a7e3b633
commit
c92e4e0fd1
1 changed files with 5 additions and 3 deletions
|
@ -132,7 +132,9 @@ namespace MLEM.Ui.Elements {
|
|||
this.CaretPos = this.text.Length;
|
||||
} else if (this.Input.IsModifierKeyDown(ModifierKey.Control)) {
|
||||
if (this.Input.IsKeyPressed(Keys.V)) {
|
||||
this.InsertText(Clipboard.GetText());
|
||||
var clip = Clipboard.GetText();
|
||||
if (clip != null)
|
||||
this.InsertText(clip);
|
||||
} else if (this.Input.IsKeyPressed(Keys.C)) {
|
||||
// until there is text selection, just copy the whole content
|
||||
Clipboard.SetText(this.Text);
|
||||
|
|
Loading…
Reference in a new issue