Limit to one instance of the application

There’s nothing built-in to Panda to handle this.

Most people solve this problem by using explicit operating-system support, direct calls into the operating system to check for a window class or instance class or something. Of course this means you sacrifice portability unless you write your code to check what kind of operating system you’re on first and do the appropriate thing for each one.

David