Apply to existing windows (if any)
| 3361 | |
| 3362 | // Apply to existing windows (if any) |
| 3363 | static void TableSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*) |
| 3364 | { |
| 3365 | ImGuiContext& g = *ctx; |
| 3366 | for (int i = 0; i != g.Tables.GetMapSize(); i++) |
| 3367 | if (ImGuiTable* table = g.Tables.TryGetMapData(i)) |
| 3368 | { |
| 3369 | table->IsSettingsRequestLoad = true; |
| 3370 | table->SettingsOffset = -1; |
| 3371 | } |
| 3372 | } |
| 3373 | |
| 3374 | static void* TableSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name) |
| 3375 | { |
nothing calls this directly
no test coverage detected