View Single Post
06/28/18, 08:38 PM   #9
SDPhantom
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 47
Originally Posted by decay2 View Post
Using zo_callLater() in a way where it can call itself again can lead to problems (function calls get piled up).
zo_callLater() doesn't run the callback itself, it just sets up a timer for the system to do so later. In the process, it does add a call or two to the stack, but it doesn't grow further than that since there is no recursion.
  Reply With Quote