| 3405 | } |
| 3406 | |
| 3407 | static void TableSettingsHandler_ClearAll(ImGuiContext* ctx, ImGuiSettingsHandler*) |
| 3408 | { |
| 3409 | ImGuiContext& g = *ctx; |
| 3410 | for (int i = 0; i != g.Tables.GetMapSize(); i++) |
| 3411 | if (ImGuiTable* table = g.Tables.TryGetMapData(i)) |
| 3412 | table->SettingsOffset = -1; |
| 3413 | g.SettingsTables.clear(); |
| 3414 | } |
| 3415 | |
| 3416 | // Apply to existing windows (if any) |
| 3417 | static void TableSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*) |
nothing calls this directly
no test coverage detected