Explorar el Código

Append from clipboard instead of replace (#22)

rigormorrtiss hace 4 años
padre
commit
a06a25f63c
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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)
 			}