Skip to content

Commit

Permalink
Added support for cycling Mail Summary and Mail Message panes using C…
Browse files Browse the repository at this point in the history
…TRL+n.
  • Loading branch information
zigm committed May 24, 2024
1 parent b46167e commit 0f85a7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/MainFrm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5858,7 +5858,7 @@ void CMainFrame::OnHelpShortcuts()

CString processDir;
FileUtils::CPathGetPath(processPath, processDir);
CString filePath = processDir + "\\ShortcutsSummary.pdf";
CString filePath = processDir + ".\\HelpFiles\\ShortcutsSummary.pdf";

if (FileUtils::PathFileExist(filePath))
{
Expand All @@ -5867,7 +5867,7 @@ void CMainFrame::OnHelpShortcuts()
else
{
CString txt;
txt.Format(L"SHORTCUTS file \"%s\" doesn't exist", filePath);
txt.Format(L"ShortcutsSummary file \"%s\" doesn't exist", filePath);
HWND h = GetSafeHwnd();
int answer = ::MessageBox(h, txt, L"Error", MB_APPLMODAL | MB_ICONQUESTION | MB_OK);
}
Expand Down
2 changes: 1 addition & 1 deletion src/mboxview.rc
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ BEGIN
END
POPUP "&Help"
BEGIN
MENUITEM "Mboxview Help", ID_HELP_MBOXVIEWHELP
MENUITEM "&About mboxview...", ID_APP_ABOUT
MENUITEM "Mboxview Help", ID_HELP_MBOXVIEWHELP
MENUITEM "User Guide", ID_HELP_USERGUIDE
MENUITEM "Readme", ID_HELP_README
MENUITEM "Change Log", ID_HELP_CHANGE_LOG
Expand Down

0 comments on commit 0f85a7c

Please sign in to comment.