[maxima] show and hide properly when left-clicking very fast on systray. Fixes #2388

This commit is contained in:
Yann Leboulanger 2006-09-04 06:52:16 +00:00
parent 05f762fc35
commit 9dc8b315d8
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ class Systray:
def on_clicked(self, widget, event):
self.on_tray_leave_notify_event(widget, None)
if event.button == 1: # Left click
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1: # Left click
self.on_left_click()
elif event.button == 2: # middle click
self.on_middle_click()