PDA

View Full Version : [zeditor] Crash-to-desktop when right-clicking Link To... in FFC Editor



Asuna Yuuki Nagato
02-18-2024, 05:53 PM
Steps to recreate:


Screen->Freeform Combos
Click Edit in "Choose Freeform Combo" window
rclick the "Link to:" dropdown in the Data tab of the FFC Editor

Asuna Yuuki Nagato
02-18-2024, 07:46 PM
Here in drop_down_list.cpp is the assertion that failed because event == 8 (geRCLICK)



int32_t DropDownList::onEvent(int32_t event, MessageDispatcher& sendMessage)
{
assert(event == geCHANGE_SELECTION);
if(onSelectFunc)
onSelectFunc(listData->getValue(alDialog->d1));
if(message >= 0)
sendMessage(message, listData->getValue(alDialog->d1));
return -1;
}

Asuna Yuuki Nagato
02-18-2024, 07:53 PM
Cannot recreate in a Release build... this crash appears to only affect developers using Debug builds.