mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-04 20:46:29 +03:00
Fix for SpartanJ/ecode#386.
This commit is contained in:
@@ -418,7 +418,7 @@ void UIMenu::safeHide() {
|
||||
}
|
||||
|
||||
void UIMenu::unselectSelected() {
|
||||
if ( nullptr != mItemSelected )
|
||||
if ( nullptr != mItemSelected && isChild( mItemSelected ) )
|
||||
mItemSelected->popState( UIState::StateSelected );
|
||||
mItemSelected = nullptr;
|
||||
mItemSelectedIndex = eeINDEX_NOT_FOUND;
|
||||
|
||||
@@ -161,7 +161,7 @@ void DebuggerClientDap::requestInitialize() {
|
||||
{ DAP_SUPPORTS_VARIABLE_TYPE, true },
|
||||
{ DAP_SUPPORTS_VARIABLE_PAGING, false },
|
||||
{ DAP_SUPPORTS_RUN_IN_TERMINAL_REQUEST, true },
|
||||
{ DAP_SUPPORTS_MEMORY_REFERENCES, false },
|
||||
{ DAP_SUPPORTS_MEMORY_REFERENCES, true },
|
||||
{ DAP_SUPPORTS_PROGRESS_REPORTING, false },
|
||||
{ DAP_SUPPORTS_INVALIDATED_EVENT, false },
|
||||
{ DAP_SUPPORTS_MEMORY_EVENT, false } };
|
||||
|
||||
Reference in New Issue
Block a user