Grc bug with deleting elements

Hi All,

i compiled today(2009-05-07) the gnuradio from trunk(svn).
The grc seems buggy. if i want to delete elements by
pressing the del button, i have to press some more times
the del button.

regards markus

Can you go into grc/src/gui/ActionHandler.py and comment out line 85

“if gtk.events_pending(): return True”

The line is supposed to keep keyboard events from queuing up, but maybe
for you, it is preventing events when it should not. Which means
gtk.events_pending() may have different implementation, which means its
unreliable, which means that I cant use it…

So, does commenting out that line fix the problem for you?

-Josh