From 19a05443640c6bc0ba60b4d45e616a8489af059b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20M=C3=BCller?= Date: Thu, 8 Sep 2022 15:30:22 +0200 Subject: [PATCH] Fix editor layer image selection not working --- src/game/editor/popups.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/editor/popups.cpp b/src/game/editor/popups.cpp index efe858808..e011c09f2 100644 --- a/src/game/editor/popups.cpp +++ b/src/game/editor/popups.cpp @@ -1278,7 +1278,7 @@ int CEditor::PopupSelectImage(CEditor *pEditor, CUIRect View, void *pContext) static int s_NoneButton = 0; if(pEditor->DoButton_MenuItem(i == -1 ? (void *)&s_NoneButton : &pEditor->m_Map.m_vpImages[i], i == -1 ? "None" : pEditor->m_Map.m_vpImages[i]->m_aName, i == g_SelectImageCurrent, &Button)) - g_SelectImageSelected = -1; + g_SelectImageSelected = i; } }