diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-22 22:35:55 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-22 22:35:55 -0400 |
commit | ce0f1baf5136dc0ec136318b216976fb34bacb30 (patch) | |
tree | 74d20d5677a88fd59c643a25081b23cc3ca2f26f /src | |
parent | 75f5b3177dc97af9342e958ec4fa7b353b759aaf (diff) |
main: Access by reference
Old Clang is fussy about this.
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 8fe8d0a23..3f126d9d1 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1159,7 +1159,7 @@ void GMainWindow::InitializeWidgets() { QMenu context_menu; for (auto const& [value, text] : Config::use_docked_mode_texts_map) { - context_menu.addAction(text, [this, value] { + context_menu.addAction(text, [&] { if (value != Settings::values.use_docked_mode.GetValue()) { OnToggleDockedMode(); } |