From 71b8dc4dc348b6762e687b2f86b1f8ca354a11b1 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Thu, 3 Apr 2014 04:52:00 -0700 Subject: [PATCH] MGR: Change keyboard shortcut for Diagnostic Flags dialog from control-shift-D to control-shift-F for both Advanced and Simple Views, because control-shift-D was already in use to select the Disks tab in Advanced View. --- clientgui/AdvancedFrame.cpp | 2 +- clientgui/DlgEventLog.cpp | 2 +- clientgui/sg_BoincSimpleFrame.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clientgui/AdvancedFrame.cpp b/clientgui/AdvancedFrame.cpp index 257d8a82e2..3a9a4b7188 100644 --- a/clientgui/AdvancedFrame.cpp +++ b/clientgui/AdvancedFrame.cpp @@ -612,7 +612,7 @@ bool CAdvancedFrame::CreateMenu() { ); menuAdvanced->Append( ID_DIAGNOSTICLOGFLAGS, - _("Event Log Diagnostic Flags...\tCtrl+Shift+D"), + _("Event Log Diagnostic Flags...\tCtrl+Shift+F"), _("Enable or disable various diagnostic messages") ); diff --git a/clientgui/DlgEventLog.cpp b/clientgui/DlgEventLog.cpp index 84290fe3c9..1cdef6a891 100644 --- a/clientgui/DlgEventLog.cpp +++ b/clientgui/DlgEventLog.cpp @@ -260,7 +260,7 @@ bool CDlgEventLog::Create( wxWindow* parent, wxWindowID id, const wxString& capt // Register that we had the Event Log open immediately SaveState(); - m_Shortcuts[0].Set(wxACCEL_CTRL|wxACCEL_SHIFT, (int)'D', ID_SGDIAGNOSTICLOGFLAGS); + m_Shortcuts[0].Set(wxACCEL_CTRL|wxACCEL_SHIFT, (int)'F', ID_SGDIAGNOSTICLOGFLAGS); m_pAccelTable = new wxAcceleratorTable(1, m_Shortcuts); SetAcceleratorTable(*m_pAccelTable); diff --git a/clientgui/sg_BoincSimpleFrame.cpp b/clientgui/sg_BoincSimpleFrame.cpp index 5b8d5c7227..22aa497795 100755 --- a/clientgui/sg_BoincSimpleFrame.cpp +++ b/clientgui/sg_BoincSimpleFrame.cpp @@ -289,7 +289,7 @@ CSimpleFrame::CSimpleFrame(wxString title, wxIconBundle* icons, wxPoint position m_Shortcuts[0].Set(wxACCEL_NORMAL, WXK_HELP, ID_HELPBOINCMANAGER); m_Shortcuts[1].Set(wxACCEL_CTRL|wxACCEL_SHIFT, (int)'E', ID_EVENTLOG); - m_Shortcuts[2].Set(wxACCEL_CTRL|wxACCEL_SHIFT, (int)'D', ID_SGDIAGNOSTICLOGFLAGS); + m_Shortcuts[2].Set(wxACCEL_CTRL|wxACCEL_SHIFT, (int)'F', ID_SGDIAGNOSTICLOGFLAGS); m_pAccelTable = new wxAcceleratorTable(3, m_Shortcuts); SetAcceleratorTable(*m_pAccelTable);