mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-27 23:37:05 -05:00
fix: Some interactive help regions not being highlighted
This commit is contained in:
@@ -97,7 +97,7 @@ namespace hex {
|
||||
EventImGuiElementRendered::subscribe([](ImGuiID id, const std::array<float, 4> bb){
|
||||
const auto boundingBox = ImRect(bb[0], bb[1], bb[2], bb[3]);
|
||||
|
||||
if (!ImGui::IsItemVisible())
|
||||
if (!ImGui::IsRectVisible(boundingBox.Min, boundingBox.Max))
|
||||
return;
|
||||
|
||||
{
|
||||
|
||||
@@ -568,6 +568,7 @@
|
||||
"hex.builtin.task.evaluating_nodes": "Evaluating nodes...",
|
||||
"hex.builtin.title_bar_button.debug_build": "Debug build\n\nSHIFT + Click to open Debug Menu",
|
||||
"hex.builtin.title_bar_button.feedback": "Leave Feedback",
|
||||
"hex.builtin.title_bar_button.interactive_help": "Interactive Help",
|
||||
"hex.builtin.tools.ascii_table": "ASCII table",
|
||||
"hex.builtin.tools.ascii_table.octal": "Show octal",
|
||||
"hex.builtin.tools.base_converter": "Base converter",
|
||||
|
||||
Reference in New Issue
Block a user