Skip to content

Commit c01bc86

Browse files
committed
Merge remote-tracking branch 'origin/pr/397'
* origin/pr/397: Open global config from template gui at correct location Pull request description: When opening template repo settings, open at those template repo settings, and not at the "General" page. fixes QubesOS/qubes-issues#9530 requires QubesOS/qubes-desktop-linux-manager#227
2 parents ea26574 + 293fc93 commit c01bc86

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

qubesmanager/qvm_template_gui.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,8 @@ def open_global_config(self, *_args):
710710
"""
711711
Run global config in foreground (blocking)
712712
"""
713-
subprocess.call('qubes-global-config')
713+
subprocess.call(
714+
['qubes-global-config', '-o', 'updates#template_repositories'])
714715
self.refresh()
715716

716717
def _get_selected_item(self) -> typing.Optional[TreeItem]:

0 commit comments

Comments
 (0)