Thanks so much guys!
This finally worked!
f=gcf()
for i in f.canvas.callbacks.callbacks:
if i=='key_press_event':
f.canvas.mpl_disconnect(f.canvas.callbacks.callbacks[i].keys()[0])
Thanks!
-David
Aha! I thought you were using 1.0. For 1.0, these things are rc
settings; I had n
On 07/26/2010 12:17 PM, David Mashburn wrote:
> Ben and Eric,
>
> Thanks so much for your help!
>
> I'm trying to turn change some of the rcParams in my script... Here is a
> test of what happens:
>
> import matplotlib
> matplotlib.rcParams['keymap.fullscreen']=''
>
> Traceback (most recent call la
Ben and Eric,
Thanks so much for your help!
I'm trying to turn change some of the rcParams in my script... Here is a
test of what happens:
import matplotlib
matplotlib.rcParams['keymap.fullscreen']=''
Traceback (most recent call last):
File "", line 1, in
File "/usr/lib/pymodules/python2.
On 07/26/2010 10:18 AM, Benjamin Root wrote:
> On Mon, Jul 26, 2010 at 3:09 PM, David Mashburn
> mailto:david.n.mashb...@gmail.com>> wrote:
>
> Hello!
>
> My name is David Mashburn, and I have been a very happy user of
> matplotlib for almost 5 years now, so let me start by saying thank
On Mon, Jul 26, 2010 at 3:09 PM, David Mashburn
wrote:
> Hello!
>
> My name is David Mashburn, and I have been a very happy user of
> matplotlib for almost 5 years now, so let me start by saying thank you
> for this wonderful piece of software! I has been a blessing to me!
>
> I am creating a pro
Hello!
My name is David Mashburn, and I have been a very happy user of
matplotlib for almost 5 years now, so let me start by saying thank you
for this wonderful piece of software! I has been a blessing to me!
I am creating a program that performs actions based on key commands in
matplotlib, and