From 0b5ccef386bf9d208d7fe4d3a42cc1f8ae495c17 Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@vt.edu>
Date: Sat, 6 Apr 2013 22:50:43 -0400
Subject: [PATCH] fixed bug where select all did not work with Console window
 focused

---
 pd/src/pd.tk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pd/src/pd.tk b/pd/src/pd.tk
index 6e56cc0ff..b531e935b 100644
--- a/pd/src/pd.tk
+++ b/pd/src/pd.tk
@@ -847,6 +847,7 @@ bind . <$ctrl_key-Key-a> {.printout.frame.text tag add sel 1.0 end}
 #	.mbar.edit entryconfigure "Paste" -state normal}
 bind . <$ctrl_key-Key-c> {tk_textCopy .printout.frame.text}
 bind .printout <$ctrl_key-Key-c> {tk_textCopy .printout.frame.text}
+bind .printout <$ctrl_key-Key-a> {.printout.frame.text tag add sel 1.0 end}
 #	.mbar.edit entryconfigure "Paste" -state normal}
 #bind . <$ctrl_key-Key-v> {tk_textPaste .printout.frame.text}
 bind . <$ctrl_key-Key-w> {menu_quit}
-- 
GitLab