mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
stop following expansion nodes at the first non-expanded one, when converting watch view selection coords when ancestor has been collapsed
This commit is contained in:
@@ -1750,6 +1750,10 @@ df_eval_watch_view_build(DF_Window *ws, DF_Panel *panel, DF_View *view, DF_EvalW
|
|||||||
for(DF_ExpandNode *n = node; n != 0; n = n->parent)
|
for(DF_ExpandNode *n = node; n != 0; n = n->parent)
|
||||||
{
|
{
|
||||||
ewv->selected_key = n->key;
|
ewv->selected_key = n->key;
|
||||||
|
if(n->expanded == 0)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if 0
|
#if 0
|
||||||
|
|||||||
Reference in New Issue
Block a user