Remove unneeded debug logs #1861

This commit is contained in:
Simon Schampijer 2010-07-07 11:08:59 +02:00
parent e90fccfd37
commit abda2edc04
2 changed files with 0 additions and 7 deletions

View File

@ -164,7 +164,6 @@ class Palette(PaletteWindow):
self.menu.set_active(True) self.menu.set_active(True)
def __hide_cb(self, widget): def __hide_cb(self, widget):
logging.debug('__hide_cb')
self.menu.set_active(False) self.menu.set_active(False)
self.menu.cancel() self.menu.cancel()
self._secondary_anim.stop() self._secondary_anim.stop()
@ -183,8 +182,6 @@ class Palette(PaletteWindow):
return self._full_request return self._full_request
def popup(self, immediate=False, state=None): def popup(self, immediate=False, state=None):
logging.debug('Palette.popup immediate %r', immediate)
if self._invoker is not None: if self._invoker is not None:
self._update_full_request() self._update_full_request()

View File

@ -326,8 +326,6 @@ class PaletteWindow(gtk.Window):
self.update_position() self.update_position()
def popdown(self, immediate=False): def popdown(self, immediate=False):
logging.debug('PaletteWindow.popdown immediate %r', immediate)
self._popup_anim.stop() self._popup_anim.stop()
self._mouse_detector.stop() self._mouse_detector.stop()
@ -379,8 +377,6 @@ class PaletteWindow(gtk.Window):
self.emit('popup') self.emit('popup')
def __hide_cb(self, widget): def __hide_cb(self, widget):
logging.debug('__hide_cb')
if self._invoker: if self._invoker:
self._invoker.notify_popdown() self._invoker.notify_popdown()