diff --git a/helpers/funcs b/helpers/funcs index d538109..8d4faec 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1020,7 +1020,7 @@ open_workshop_page(){ shift local id="$1" local workshop_uri="steam://url/CommunityFilePage/$id" - $steam_cmd "$workshop_uri" $id + $steam_cmd "$workshop_uri" $id & } open_link(){ shift diff --git a/helpers/ui.py b/helpers/ui.py index 9b51720..e64caee 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -1139,7 +1139,8 @@ class TreeView(Gtk.TreeView): process_tree_option([self.view, RowType.DELETE_SELECTED], self) case "Open in Steam Workshop": record = self.get_column_at_index(2) - call_out(parent, "open_workshop_page", record) + base_cmd = "open_workshop_page" + subprocess.Popen(['/usr/bin/env', 'bash', funcs, base_cmd, record]) def toggle_selection(self, bool): l = len(mod_store)