From 01136126d6ad736b06bd621d471f021f42b393e6 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Sat, 16 Nov 2013 12:43:02 -0500 Subject: [PATCH] fixed cut/copy/paste regression with the text due to autorepeat filtering implementation --- pd/src/pd.tk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pd/src/pd.tk b/pd/src/pd.tk index 53a940af2..4672b8f9e 100644 --- a/pd/src/pd.tk +++ b/pd/src/pd.tk @@ -7083,9 +7083,9 @@ proc pdtk_pastetext {} { # we add first digit to ask for force getscroll as we limit the number of # getscrolls we can get per second so last one is likely to be eaten up # in the process - pd [concat pd pastetext 1 1 $keynum 0 0\;] + pd [concat pd pastetext 1 1 $keynum 0 0 0\;] } else { - pd [concat pd pastetext 0 1 $keynum 0 0\;] + pd [concat pd pastetext 0 1 $keynum 0 0 0\;] } } } -- GitLab