mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 00:11:59 +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()
|
_onFirstActivate()
|
||||||
{
|
{
|
||||||
const gtkSettings = Gtk.Settings.get_default();
|
const gtkSettings = Gtk.Settings.get_default();
|
||||||
|
@@ -9,7 +9,7 @@ const ID_POSTFIX = 'Remote';
|
|||||||
Misc.clapperPath = `${pkg.datadir}/${Misc.appId}`;
|
Misc.clapperPath = `${pkg.datadir}/${Misc.appId}`;
|
||||||
Misc.appId += '.' + ID_POSTFIX;
|
Misc.appId += '.' + ID_POSTFIX;
|
||||||
|
|
||||||
function main()
|
function main(argv)
|
||||||
{
|
{
|
||||||
new AppRemote().run();
|
new AppRemote().run(argv);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user