apps-menu: Fix call to open_new_window()

The function never had a timestamp parameter, the parameter that was
added at some point is a workspace index. Ouch, this has gone unspotted
since the original AxeMenu extension was adapted for the apps-menu ...
This commit is contained in:
Siteshwar Vashisht
2015-06-09 17:43:20 +05:30
committed by Florian Müllner
parent 0d0eff2ea2
commit dd620df620

View File

@@ -74,7 +74,7 @@ const ApplicationMenuItem = new Lang.Class({
},
activate: function(event) {
this._app.open_new_window(event.get_time());
this._app.open_new_window(-1);
this._button.selectCategory(null, null);
this._button.menu.toggle();
this.parent(event);