diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-05-01 19:12:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-01 19:12:01 +0200 |
| commit | eb64c88a8bf9c8fe66c33a5309d28e526b994d25 (patch) | |
| tree | 0260975a708a4212edd50a5c3cd1f04f4dca7a8d /dbus | |
| parent | 0c825d21631d467104cb65c61e15c39c46481e9e (diff) | |
Fix select elements extension (#2875)
* fix dbus issue
* add bean stitch repeats
* add tartan
* add autosatin underlay
---------
Co-authored-by: rejbasket
Diffstat (limited to 'dbus')
| -rw-r--r-- | dbus/select_elements.py | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/dbus/select_elements.py b/dbus/select_elements.py index ad016751..564de8a3 100644 --- a/dbus/select_elements.py +++ b/dbus/select_elements.py @@ -22,20 +22,7 @@ class DBusActions: except BaseException: exit() - proxy = Gio.DBusProxy.new_sync(bus, Gio.DBusProxyFlags.NONE, None, - 'org.freedesktop.DBus', - '/org/freedesktop/DBus', - 'org.freedesktop.DBus', None) - names_list = proxy.call_sync('ListNames', None, Gio.DBusCallFlags.NO_AUTO_START, 500, None) - - # names_list is a GVariant, must unpack - names = names_list.unpack()[0] - - # Look for Inkscape; names is a tuple. - for name in names: - if ('org.inkscape.Inkscape' in name): - break - + name = 'org.inkscape.Inkscape' appGroupName = "/org/inkscape/Inkscape" self.applicationGroup = Gio.DBusActionGroup.get( bus, |
