chore: auto-commit (5 archivos)

- app.md
- appicon.ico
- extract_panel.cpp
- main.cpp
- views.cpp

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-19 00:31:34 +02:00
parent 688b399fd3
commit d6d7b03d09
5 changed files with 18 additions and 13 deletions
+4
View File
@@ -882,6 +882,7 @@ void views_inspector(AppState& app) {
ImGui::TextUnformatted("Identity");
ImGui::Separator();
// LAYOUT-TABLE — KPI/form/splitter, no data; keep BeginTable inline.
if (ImGui::BeginTable("##insp_id", 2,
ImGuiTableFlags_SizingStretchProp |
ImGuiTableFlags_NoBordersInBody)) {
@@ -955,6 +956,7 @@ void views_inspector(AppState& app) {
const EntitySpec* spec = find_entity_spec(app.parsed_types,
app.insp_type_buf);
// LAYOUT-TABLE — KPI/form/splitter, no data; keep BeginTable inline.
if (ImGui::BeginTable("##insp_fields", 2,
ImGuiTableFlags_SizingStretchProp |
ImGuiTableFlags_NoBordersInBody)) {
@@ -1851,6 +1853,8 @@ void views_node_groups_window(AppState& app) {
ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg |
ImGuiTableFlags_ScrollY | ImGuiTableFlags_Resizable |
ImGuiTableFlags_SizingStretchProp;
// LAYOUT-TABLE — interactividad app-específica: Selectable+click/dblclick diferenciado,
// PopupContextItem con promote/demote/focus, paginación manual. No migrable a data_table::render.
if (col_count > 0 && ImGui::BeginTable("##te_rows", col_count, tflags,
ImVec2(0, -ImGui::GetFrameHeightWithSpacing()))) {
ImGui::TableSetupScrollFreeze(0, 1);