This modification to GmailNotify.tray_icon_clicked in
notifier.py allows double-clicking on the tray icon in
order to launch gmail in the user's browser.
This is an OK script. It uses: event.type == gtk.gdk._2BUTTON_PRESS which is for all buttons, not just the left button.
Anyway to get the scroll box to show up when you scroll up on the icon and then scroll down when you scroll down?
event.direction == gtk.gdk.SCROLL_UP:
event.type == gtk.gdk.SCROLL_UP:
did not work.
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Launch Gmail on double-click of tray icon
This is an OK script. It uses: event.type == gtk.gdk._2BUTTON_PRESS which is for all buttons, not just the left button.
Anyway to get the scroll box to show up when you scroll up on the icon and then scroll down when you scroll down?
event.direction == gtk.gdk.SCROLL_UP:
event.type == gtk.gdk.SCROLL_UP:
did not work.
Thanks