From 85a98c2100ba3a9e2bf73423db5ac3d60edbd29a Mon Sep 17 00:00:00 2001 From: Steven Lovegrove Date: Fri, 18 Mar 2022 19:47:20 -0700 Subject: [PATCH] [display] fix bad QuitAll() bug that would presumably prevent it from working at all. --- components/pango_display/src/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/pango_display/src/display.cpp b/components/pango_display/src/display.cpp index dc4bd8ba4..cc4f4a46e 100644 --- a/components/pango_display/src/display.cpp +++ b/components/pango_display/src/display.cpp @@ -233,7 +233,7 @@ void Quit() void QuitAll() { - for(auto nc : contexts) { + for(auto& nc : contexts) { nc.second->quit = true; } }