Jump to content

Get rid of popup every time I exit Plug In Manager


Recommended Posts

Everytime I exit Plug In Manager I get a pop up that says "Only Plug-in Objects in the active document have been updated. You must close and open the other documents to update them".  How do I get this this warning to stop appearing?

 

Not having a second VW file open is not a useful answer...

Link to comment

I think this isn’t a warning you can opt not to show again, as it only arises in specific circumstances. 

 

Are you frequently entering and exiting the plug-in Manager? A better consideration might be how to avoid this. Using include files, turning on developer mode, and turning off caching (there should be some discussion of this in the archive) helps avoid regularly entering the plug-in Manager. 

Link to comment
  • 2 weeks later...

In addition to enabling developer mode in Preferences>Session, add this line to your include:

 

vs.SetPref(412, True) #Turns off include caching

 

If your include includes other modules that you are modifying (for example common include libraries), you need to tell Python to reload the included modules:

 

import imp

import externalLib
imp.reload(externalLib)

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...