From 7c5cf568203986979df3ee78cb5e914e1dd9a2fc Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 9 Feb 2016 11:33:13 +0100 Subject: [PATCH] Send hotkey is Ctrl+Enter now (since text controls are multiline now and consume Enter themselves) --- ZRCola/zrcolafrm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ZRCola/zrcolafrm.cpp b/ZRCola/zrcolafrm.cpp index f93076e..90686e4 100644 --- a/ZRCola/zrcolafrm.cpp +++ b/ZRCola/zrcolafrm.cpp @@ -62,7 +62,7 @@ wxZRColaFrame::wxZRColaFrame() : // Register frame specific hotkey(s). { wxAcceleratorEntry entries[2]; - entries[0].Set(wxACCEL_NORMAL, WXK_RETURN, wxID_SEND); + entries[0].Set(wxACCEL_CTRL , WXK_RETURN, wxID_SEND); entries[1].Set(wxACCEL_NORMAL, WXK_ESCAPE, wxID_SEND_ABORT); SetAcceleratorTable(wxAcceleratorTable(_countof(entries), entries)); }