diff options
Diffstat (limited to 'editor/inspect-draw.cpp')
-rw-r--r-- | editor/inspect-draw.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/inspect-draw.cpp b/editor/inspect-draw.cpp index 7b2e5009..128e619f 100644 --- a/editor/inspect-draw.cpp +++ b/editor/inspect-draw.cpp @@ -26,13 +26,13 @@ void app::draw_inspector() for (auto i = (int)(inspectors.size()-1); i >= 0; i--) { auto [id, target] = inspectors[i]; - auto e_ = w.find_object(id); - if (!e_) + auto eʹ = w.find_object(id); + if (!eʹ) { erase_inspector((unsigned)i); continue; } - auto& e = *e_; + auto& e = *eʹ; char buf[256], buf2[32], buf3[128]; ImGui::SetNextWindowSize({375*dpi[0], 0}); |