+ chg: disable Goto menu on empty file

This commit is contained in:
Rainer Kottenhoff 2019-01-10 18:38:02 +01:00
parent bfc0921fd9
commit 6b334ba85e
2 changed files with 4 additions and 1 deletions

View File

@ -37,11 +37,13 @@ NEW:
- add CED reliability option (NLS: dialogs)
- Indentation consistency check on file open (NLS: dialogs)
- End-of-Line (EOL) consistency check on file open (NLS: dialogs)
- checkbox for transparent Find/Replace Dialogbox on loosing focus
--------------------------------------------------
CHANGES:
--------------------------------------------------
- Scintilla Library (SCL) version 4.1.3 (2019-01-10)
- SCL new Nim lexer replaces old Nimrod lexer (new highlighting)
- Up-to-Date SCL

View File

@ -2712,7 +2712,8 @@ LRESULT MsgInitMenu(HWND hwnd, WPARAM wParam, LPARAM lParam)
EnableCmd(hmenu,IDM_EDIT_CLEAR, !s && !ro);
EnableCmd(hmenu, IDM_EDIT_SELECTALL, !e);
EnableCmd(hmenu, IDM_EDIT_GOTOLINE, !e);
OpenClipboard(hwnd);
EnableCmd(hmenu,IDM_EDIT_CLEARCLIPBOARD,CountClipboardFormats());
CloseClipboard();