fyne-io / systray

a cross platfrom Go library to place an icon and menu in the notification area
Apache License 2.0
223 stars 41 forks source link

Don't close the dbus session connection. #54

Closed bdwalton closed 1 year ago

bdwalton commented 1 year ago

Don't close the dbus session connection when systray exits.

Per the dbus library's API documentation, you should not close a shared session connection. Drop that call when the systray is being shut down to avoid harming other users of the shared connection that may inhabit the same process and be longer lived.

bdwalton commented 1 year ago

Ignore this. This is using ConnectSessionBus(), not SessionBus(). Withdrawn.