Apply to existing windows (if any)
| 3415 | |
| 3416 | // Apply to existing windows (if any) |
| 3417 | static void TableSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*) |
| 3418 | { |
| 3419 | ImGuiContext& g = *ctx; |
| 3420 | for (int i = 0; i != g.Tables.GetMapSize(); i++) |
| 3421 | if (ImGuiTable* table = g.Tables.TryGetMapData(i)) |
| 3422 | { |
| 3423 | table->IsSettingsRequestLoad = true; |
| 3424 | table->SettingsOffset = -1; |
| 3425 | } |
| 3426 | } |
| 3427 | |
| 3428 | static void* TableSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name) |
| 3429 | { |
nothing calls this directly
no test coverage detected