This line should stop those annoying beeps under windows. The ones that sounds when deleting in an entry box with nothing to delete or when pressing Ctrl+P to open the preferences for example.
Those beeps are really not needed and I think people will be happy with something more quiet.
In gnome it doesn't sound because the default behavior of that "beep" is really a dim of the window but it's disabled by default. You can see how annoying it is enabling that alert in the sound configuration.
I'm not sure how this behaves under KDE or another desktop...
Index: Controller.py
===================================================================
--- Controller.py (revisión: 1936)
+++ Controller.py (copia de trabajo)
@@ -915,6 +915,7 @@
except NameError:
path = sys.path[0]
+ gtk.settings_get_default().set_property("gtk-error-bell",False)
originalPath = os.getcwd()
os.chdir(path)
sys.path.append(path)