NALib icon indicating copy to clipboard operation
NALib copied to clipboard

Speed up na_GetUINALibEquivalent

Open Manderby opened this issue 4 years ago • 0 comments

na_GetUINALibEquivalent is currently done using a list traversal which might be slow for very big UIs. It had beed tried to be done using the GWLP_USERDATA of HWND on windows and with the tag of NSView on macOS but that proved to be a maintenance catastrophy.

Optimal solution would be a a hash map. Maybe find something else.

Manderby avatar Nov 03 '20 19:11 Manderby