From 795405a35875dec961c597f3816c1ee158fccd95 Mon Sep 17 00:00:00 2001 From: Chris Bradbury Date: Fri, 9 Sep 2022 21:38:12 +0100 Subject: [PATCH] Enable paste support in `views.Application` Fixes #552 --- views/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/views/app.go b/views/app.go index 21aca059..c8f8aabf 100644 --- a/views/app.go +++ b/views/app.go @@ -127,6 +127,7 @@ func (app *Application) run() { }() screen.Init() screen.EnableMouse() + screen.EnablePaste() screen.Clear() widget.SetView(screen)