Re: [PyMOL] disable all screen output

2014-05-20 Thread Osvaldo Martin
Thanks Thomas, You are right. I just have added a couple of links to the "suspend_updates" setting in the wiki to make that option easier to find. Cheers, Osvaldo. On Tue, May 20, 2014 at 5:46 PM, Thomas Holder < thomas.hol...@schrodinger.com> wrote: > Hi Osvaldo, > > I think you are looking f

Re: [PyMOL] disable all screen output

2014-05-20 Thread Thomas Holder
Hi Osvaldo, I think you are looking for the "suspend_updates" setting. Cheers, Thomas On 19 May 2014, at 15:10, Osvaldo Martin wrote: > Hello everyone! > > I working on a PyMOL plugin that performs a lot of selections and operations. > I would like to avoid updating the screen until the sc

[PyMOL] disable all screen output

2014-05-19 Thread Osvaldo Martin
Hello everyone! I working on a PyMOL plugin that performs a lot of selections and operations. I would like to avoid updating the screen until the script finish (mainly to increase the performance of the plugin) I tried with something like this cmd.disable('all') "Some code" cmd.enable('all') Th