Correctly resize the CEF browser when any window in a collection is resized (closes #3686). Warn about the behavior when showing 2D elements on multiple windows

This commit is contained in:
Alexander Bock
2025-06-08 15:19:19 +02:00
parent 758c0f0641
commit 72c40f531f
5 changed files with 41 additions and 2 deletions

View File

@@ -43,6 +43,7 @@ struct WindowDelegate {
void (*setSynchronization)(bool enabled) = [](bool) {};
bool (*windowHasResized)() = []() { return false; };
bool (*anyWindowHasResized)() = []() { return false; };
double (*averageDeltaTime)() = []() { return 0.0; };