mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
Remove useless run method override
This commit is contained in:
@@ -62,11 +62,6 @@ class ClapperAppBase extends Gtk.Application
|
||||
);
|
||||
}
|
||||
|
||||
run(arr)
|
||||
{
|
||||
super.run(arr || []);
|
||||
}
|
||||
|
||||
_onFirstActivate()
|
||||
{
|
||||
const gtkSettings = Gtk.Settings.get_default();
|
||||
|
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user