Open new file in the same window. Closes #31

This commit is contained in:
Rafostar
2020-12-24 00:23:49 +01:00
parent f2d8d8ad4f
commit 6afbbc767a
6 changed files with 63 additions and 35 deletions

View File

@@ -1,6 +1,7 @@
imports.gi.versions.Gdk = '4.0';
imports.gi.versions.Gtk = '4.0';
const System = imports.system;
const { Gst } = imports.gi;
const { App } = imports.clapper_src.app;
@@ -8,7 +9,5 @@ Gst.init(null);
function main()
{
let clapper = new App({
playlist: ARGV
}).run();
new App().run([System.programInvocationName].concat(ARGV));
}