diff --git a/release/antos-1.2.0.tar.gz b/release/antos-1.2.0.tar.gz index 26cbad0..b2082b6 100644 Binary files a/release/antos-1.2.0.tar.gz and b/release/antos-1.2.0.tar.gz differ diff --git a/src/core/gui.ts b/src/core/gui.ts index 99f92f9..557dfc5 100644 --- a/src/core/gui.ts +++ b/src/core/gui.ts @@ -336,13 +336,14 @@ namespace OS { } const list = apps.map((e) => ({ text: e.name, + app: e.app, icon: e.icon, iconclass: e.iconclass, })); openDialog("SelectionDialog", { title: __("Open with"), data: list, - }).then((d) => launch(d.text, [it])); + }).then((d) => launch(d.app, [it])); } /**