ソースを参照

Append from clipboard instead of replace (#22)

rigormorrtiss 4 年 前
コミット
a06a25f63c
1 ファイル変更1 行追加0 行削除
  1. 1 0
      ui/inputfields.go

+ 1 - 0
ui/inputfields.go

@@ -21,6 +21,7 @@ func NewMessageInputField(onMessageInputFieldDone func(key tcell.Key), theme *ut
 		SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey {
 			if event.Key() == tcell.KeyCtrlV {
 				text, _ := clipboard.ReadAll()
+				text = messageInputField.GetText() + text
 				messageInputField.SetText(text)
 			}