From 421563108303a9c29f56bf4d0f8cf17ff8c63f17 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Wed, 2 Jul 2008 21:29:02 +0000 Subject: [PATCH] Fix bug #603 (Ctrl+A shortcut in query editor). Would have been nice to put this TEditSelectAll action into the "Edit" main menu, as it provides a global shortcut which magically works in all TEdits and other descendants of TCustomEdit. But TEditSelectAll interferes with SynEdit's own shortcut in a way that a) the action's shortcut has prio over SynMemo's shortcut b) the "select all" action itself is not functioning for a SynMemo Not sure where the bug is, either in TEditSelectAll or in TSynMemo. --- source/main.dfm | 6 ------ source/main.pas | 1 - 2 files changed, 7 deletions(-) diff --git a/source/main.dfm b/source/main.dfm index 06f3584a..14a9dcb3 100644 --- a/source/main.dfm +++ b/source/main.dfm @@ -770,12 +770,6 @@ object MainForm: TMainForm ImageIndex = 40 ShortCut = 32776 end - object actSelectAll: TEditSelectAll - Category = 'Various' - Caption = 'Select &All' - Hint = 'Select All|Selects the entire document' - ShortCut = 16449 - end object actAboutBox: TAction Tag = 57 Category = 'Various' diff --git a/source/main.pas b/source/main.pas index 3491a8cf..87ac23cf 100644 --- a/source/main.pas +++ b/source/main.pas @@ -177,7 +177,6 @@ type actRefresh: TAction; actImportCSV: TAction; actCut: TEditCut; - actSelectAll: TEditSelectAll; Cut1: TMenuItem; actExportSettings: TAction; actImportSettings: TAction;