You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In oryginal RadioTray, when I scrolled by mouse wheel on system tray icon, I changed volume. In this RadioTray version this feature does not work, because of incompatibility with GTK3.
You should correct SysTray.py file in scroll event and use Gdk.ScrollDirection object.
def scroll(self,widget, event):
if event.direction == Gdk.ScrollDirection.UP:
self.mediator.volume_up()
if event.direction == Gdk.ScrollDirection.DOWN:
self.mediator.volume_down()
The text was updated successfully, but these errors were encountered:
In oryginal RadioTray, when I scrolled by mouse wheel on system tray icon, I changed volume. In this RadioTray version this feature does not work, because of incompatibility with GTK3.
You should correct SysTray.py file in scroll event and use
Gdk.ScrollDirection
object.The text was updated successfully, but these errors were encountered: