diff --git a/PowerEditor/src/NppNotification.cpp b/PowerEditor/src/NppNotification.cpp index 6490b5365..6342773f5 100644 --- a/PowerEditor/src/NppNotification.cpp +++ b/PowerEditor/src/NppNotification.cpp @@ -565,6 +565,8 @@ BOOL Notepad_plus::notify(SCNotification *notification) bool isFileExisting = PathFileExists(buf->getFullPathName()) != FALSE; _tabPopupMenu.enableItem(IDM_FILE_DELETE, isFileExisting); _tabPopupMenu.enableItem(IDM_FILE_RENAME, isFileExisting); + _tabPopupMenu.enableItem(IDM_FILE_OPEN_FOLDER, isFileExisting); + _tabPopupMenu.enableItem(IDM_FILE_OPEN_CMD, isFileExisting); _tabPopupMenu.enableItem(IDM_FILE_OPEN_DEFAULT_VIEWER, isAssoCommandExisting(buf->getFullPathName()));