dx-packages team mailing list archive
-
dx-packages team
-
Mailing list archive
-
Message #21462
[Bug 1071738] Re: Indicator scroll event says direction UP on 12.10 even when scrolling down
+1 on Lubuntu/LXDE.
Variety Version: 0.4.20
Desktop Environment: LXDE
OS: Lubuntu 14.04 amd64
$ apt-cache policy gir1.2-appindicator3-0.1 indicator-application indicator-application-gtk2 libappindicator1 libappindicator3-1 libindicator3-7 libindicator7 lxpanel-indicator-applet-plugin | sed '/^[^ ]/ {n;p}; d'
gir1.2-appindicator3-0.1:
Installed: 12.10.1+13.10.20130920-0ubuntu4
indicator-application:
Installed: 12.10.1+14.04.20140407-0ubuntu1
indicator-application-gtk2:
Installed: 12.10.0.1-0ubuntu2
libappindicator1:
Installed: 12.10.1+13.10.20130920-0ubuntu4
libappindicator3-1:
Installed: 12.10.1+13.10.20130920-0ubuntu4
libindicator3-7:
Installed: 12.10.2+14.04.20140402-0ubuntu1
libindicator7:
Installed: 12.10.2+14.04.20140402-0ubuntu1
lxpanel-indicator-applet-plugin:
Installed: 0.6.1-0ubuntu3
--
You received this bug notification because you are a member of DX
Packages, which is subscribed to libappindicator in Ubuntu.
Matching subscriptions: dx-packages
https://bugs.launchpad.net/bugs/1071738
Title:
Indicator scroll event says direction UP on 12.10 even when scrolling
down
Status in “libappindicator” package in Ubuntu:
Confirmed
Bug description:
I am using AppIndicator via Python. On Ubuntu 12.10 (stock install,
python-appindicator: Installed: 12.10.0-0ubuntu1) when I listen for
scroll event signals, the direction is always reported as UP, never as
DOWN - even when scrolling down. This was working on 12.04.
My application variety depends on this functionality, here is the
relevant bug report for it:
https://bugs.launchpad.net/variety/+bug/1071598
Here is sample code to demonstrate the problem (OK on 12.04, buggy on
12.10):
from gi.repository import Gtk, Gdk, AppIndicator3
if __name__ == "__main__":
menu = Gtk.Menu()
quit = Gtk.MenuItem("Quit")
quit.connect("activate", Gtk.main_quit)
menu.append(quit)
menu.show_all()
def scroll(ind, steps, direction):
print steps, direction
if direction != Gdk.ScrollDirection.UP:
print "Things seem ok"
indicator = AppIndicator3.Indicator.new('testscroll', '', AppIndicator3.IndicatorCategory.APPLICATION_STATUS)
indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)
indicator.set_icon("/usr/share/pixmaps/firefox.png")
indicator.connect("scroll-event", scroll)
indicator.set_menu(menu)
Gtk.main()
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libappindicator/+bug/1071738/+subscriptions