From a5911d053cbae2ca48cc1daee74fbef1b7137ec7 Mon Sep 17 00:00:00 2001 From: lsv Date: Mon, 11 Apr 2022 09:16:03 +0500 Subject: [PATCH] fix --- ctl/ctlSQLBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctl/ctlSQLBox.cpp b/ctl/ctlSQLBox.cpp index 1c73e4f..4c98be1 100644 --- a/ctl/ctlSQLBox.cpp +++ b/ctl/ctlSQLBox.cpp @@ -196,7 +196,7 @@ void ctlSQLBox::Create(wxWindow *parent, wxWindowID id, const wxPoint &pos, cons wxAcceleratorEntry entries[3]; entries[0].Set(wxACCEL_CTRL, (int)'F', MNU_FIND); entries[1].Set(wxACCEL_CTRL, WXK_SPACE, MNU_AUTOCOMPLETE); - entries[0].Set(wxACCEL_CTRL, (int)'C', MNU_COPY); + entries[2].Set(wxACCEL_CTRL, (int)'C', MNU_COPY); wxAcceleratorTable accel(3, entries); SetAcceleratorTable(accel);