mirror of https://github.com/BOINC/boinc.git
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.
This commit is contained in:
parent
0432a8e3f6
commit
71b8dc4dc3
|
@ -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")
|
||||
);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue