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
Currently trayicon plugin will try to load old libappindicator implementation and, if not found, fallback to the new one:
gi.require_version('AppIndicator3', '0.1')
from gi.repository import AppIndicator3 as appindicator
except:
#fall back to Ayatana
gi.require_version('AyatanaAppIndicator3', '0.1')
from gi.repository import AyatanaAppIndicator3 as appindicator
the problem is that, during the transition, it is common to have both installed (as they can be installed at the same time) and, then, it will keep using the old (unmaintained) version over the new one.
I would then reverse the logic to fallback to the old implementation if ayatana one is not present
Thanks a lot
The text was updated successfully, but these errors were encountered:
Currently trayicon plugin will try to load old libappindicator implementation and, if not found, fallback to the new one:
the problem is that, during the transition, it is common to have both installed (as they can be installed at the same time) and, then, it will keep using the old (unmaintained) version over the new one.
I would then reverse the logic to fallback to the old implementation if ayatana one is not present
Thanks a lot
The text was updated successfully, but these errors were encountered: