1. Execute in Eden Editor
```
[] spawn
{
disableSerialization;
_display = findDisplay 313 createDisplay "RscDisplayEmpty";
_ctrlLNB = _display ctrlCreate ["RscListNBox", 645];
_ctrlLNB ctrlSetPosition [0,0,1,0.04];
_ctrlLNB ctrlSetBackgroundColor [0,0,0,1];
_ctrlLNB ctrlCommit 0;
_ctrlLNB lnbAddColumn 0.5;
_ctrlLNB lnbAddRow ["col1", "col2"];
sleep 1;
_ctrlLNB lnbSetPicture [[0, 0], "\a3\ui_f\data\logos\arma3_bundle_icon_ca.paa"];
_ctrlLNB lnbSetPictureRight [ [0, 0], "\a3\ui_f\data\logos\arma3_bundle_icon_ca.paa"];
systemChat "Picture set";
sleep 2;
_ctrlLNB lnbSetPicture [[0, 0], ""];
_ctrlLNB lnbSetPictureRight [ [0, 0], ""];
systemChat "Picture should be gone but isn't.";
systemChat format ["Picture: %1",_ctrlLNB lnbPicture [0, 0]];
}
```