Skip to content

Commit

Permalink
boincmgr: use wxACCEL_RAW_CTRL instead of wxACCEL_CTRL to fit with re…
Browse files Browse the repository at this point in the history
…al Ctrl key on macOS
  • Loading branch information
winkies committed Jan 19, 2021
1 parent cbd87af commit 746d58f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clientgui/AdvancedFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -755,9 +755,9 @@ bool CAdvancedFrame::CreateMenus() {
delete m_pOldMenubar;
}

m_Shortcuts[0].Set(wxACCEL_CTRL, (int)'A', ID_SELECTALL);
m_Shortcuts[1].Set(wxACCEL_CTRL, WXK_TAB, ID_NEXTPAGE);
m_Shortcuts[2].Set(wxACCEL_CTRL|wxACCEL_SHIFT, WXK_TAB, ID_PREVPAGE);
m_Shortcuts[0].Set(wxACCEL_RAW_CTRL, (int)'A', ID_SELECTALL);
m_Shortcuts[1].Set(wxACCEL_RAW_CTRL, WXK_TAB, ID_NEXTPAGE);
m_Shortcuts[2].Set(wxACCEL_RAW_CTRL|wxACCEL_SHIFT, WXK_TAB, ID_PREVPAGE);


#ifdef __WXMAC__
Expand Down

0 comments on commit 746d58f

Please sign in to comment.