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 5b51a795b4
commit 2d57d837f8
+1 -1
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);