further memory view fixes / tweaks; rich hover coverage for virtual address ranges in memory views / watch views

This commit is contained in:
Ryan Fleury
2025-06-06 14:57:46 -07:00
parent 2d9929452c
commit 4057e00fa1
13 changed files with 248 additions and 122 deletions
+15
View File
@@ -2606,6 +2606,21 @@ ui_build_box_from_key(UI_BoxFlags flags, UI_Key key)
box->text_color = ui_color_from_name(str8_lit("text"));
}
}
if(box->flags & (UI_BoxFlag_DrawBorder|
UI_BoxFlag_DrawSideRight|
UI_BoxFlag_DrawSideLeft|
UI_BoxFlag_DrawSideTop|
UI_BoxFlag_DrawSideBottom))
{
if(ui_state->border_color_stack.top != &ui_state->border_color_nil_stack_top)
{
box->border_color = ui_state->border_color_stack.top->v;
}
else
{
box->border_color = ui_color_from_name(str8_lit("border"));
}
}
}
//- rjf: auto-pop all stacks