diff --git a/src/appBase.js b/src/appBase.js index 9d4b26e7..ce0541fc 100644 --- a/src/appBase.js +++ b/src/appBase.js @@ -62,11 +62,6 @@ class ClapperAppBase extends Gtk.Application ); } - run(arr) - { - super.run(arr || []); - } - _onFirstActivate() { const gtkSettings = Gtk.Settings.get_default(); diff --git a/src/mainRemote.js b/src/mainRemote.js index dc20ddf5..19b37a63 100644 --- a/src/mainRemote.js +++ b/src/mainRemote.js @@ -9,7 +9,7 @@ const ID_POSTFIX = 'Remote'; Misc.clapperPath = `${pkg.datadir}/${Misc.appId}`; Misc.appId += '.' + ID_POSTFIX; -function main() +function main(argv) { - new AppRemote().run(); + new AppRemote().run(argv); }