Fix missing renamed shadowed variable

This commit is contained in:
Jupeyy 2022-04-04 20:51:19 +02:00
parent 0e003f54ee
commit cd1a34c411

View file

@ -3101,7 +3101,7 @@ int CEditor::DoProperties(CUIRect *pToolBox, CProperty *pProps, int *pIDs, int *
static int s_ColorPicker, s_ColorPickerID;
if(DoButton_ColorPicker(&s_ColorPicker, &ColorBox, &ColorPick))
{
ms_PickerColor = color_cast<ColorHSVA>(Color);
ms_PickerColor = color_cast<ColorHSVA>(ColorPick);
UiInvokePopupMenu(&s_ColorPickerID, 0, UI()->MouseX(), UI()->MouseY(), 180, 150, PopupColorPicker);
}