mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
14 lines
337 B
Plaintext
14 lines
337 B
Plaintext
|
private["_display"];
|
||
|
|
||
|
_display = uiNameSpace getVariable ["RscExileXM8", displayNull];
|
||
|
|
||
|
_notes = profileNamespace getVariable ["ExAd_Journal_Notes",[]];
|
||
|
|
||
|
_listCtrl = [_display,"ExAd_Journal","listNotes"] call ExAd_fnc_getAppCtrl;
|
||
|
lbClear _listCtrl;
|
||
|
|
||
|
{
|
||
|
_index = _listCtrl lbAdd _x;
|
||
|
_listCtrl lbSetTooltip [_index, _x];
|
||
|
|
||
|
}forEach _notes;
|