Fixed address lookup from header editor

This commit is contained in:
Ianos Gnatiuc 2005-11-30 13:29:45 +00:00
parent ff6714f600
commit 4ea7052b67
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,8 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/ Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________ ______________________________________________________________________
- Fixed address lookup from header editor (pressing ENTER on empty To:).
- Fixed keystacking conflicts: - Fixed keystacking conflicts:
- KeybClear will not affect keystacking. - KeybClear will not affect keystacking.
- Auto Macro will not work if keystacking is used. - Auto Macro will not work if keystacking is used.

View File

@ -1015,7 +1015,7 @@ void Lookup(GMsg* msg, Addr* addr, char* name, int topline, char* status) {
found = false; found = false;
NLP->pop_state(); NLP->pop_state();
} }
else if (!found && matchaddr.point) else if (!found && matchaddr.point && (topline < 0))
{ {
matchaddr.point = 0; matchaddr.point = 0;
NLP->find(matchaddr); NLP->find(matchaddr);