mirror of
https://github.com/aclist/dztui.git
synced 2025-04-04 19:43:00 +02:00
fix: non blocking workshop open
This commit is contained in:
parent
0fdc132873
commit
ac3055ce39
2 changed files with 3 additions and 2 deletions
|
@ -1020,7 +1020,7 @@ open_workshop_page(){
|
||||||
shift
|
shift
|
||||||
local id="$1"
|
local id="$1"
|
||||||
local workshop_uri="steam://url/CommunityFilePage/$id"
|
local workshop_uri="steam://url/CommunityFilePage/$id"
|
||||||
$steam_cmd "$workshop_uri" $id
|
$steam_cmd "$workshop_uri" $id &
|
||||||
}
|
}
|
||||||
open_link(){
|
open_link(){
|
||||||
shift
|
shift
|
||||||
|
|
|
@ -1139,7 +1139,8 @@ class TreeView(Gtk.TreeView):
|
||||||
process_tree_option([self.view, RowType.DELETE_SELECTED], self)
|
process_tree_option([self.view, RowType.DELETE_SELECTED], self)
|
||||||
case "Open in Steam Workshop":
|
case "Open in Steam Workshop":
|
||||||
record = self.get_column_at_index(2)
|
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):
|
def toggle_selection(self, bool):
|
||||||
l = len(mod_store)
|
l = len(mod_store)
|
||||||
|
|
Loading…
Reference in a new issue