user3777528
user3777528

Reputation: 41

Npapi plugin crash in firefox

I'm writing a npapi plugin can sign pdf document, my plugin worked in chrome, ie but in firefox when my plugin export a dialog as image i can't input anything then my plugin is crashed. Can you tell me why i can't input anything when my plugin call a dialog of windows? enter image description here

enter image description here

Upvotes: 0

Views: 199

Answers (1)

taxilian
taxilian

Reputation: 14324

From the response to the same question you asked on the firebreath-dev group:

You must never block the main (UI) thread in a plugin. Run your dialog on another thread and it'll probably work.

Upvotes: 1

Related Questions