search: remove additional params from activateResult() call
The only case when we're interested in using those parameters nowadays is for DnD, which is handled in a separate method already. Since we're not going to support DnD for non-app search results anyway, drop the params from all the activateResults() calls; this will be useful later since we're going to add another parameter to it. https://bugzilla.gnome.org/show_bug.cgi?id=689735
This commit is contained in:
@ -340,18 +340,15 @@ const AppSearchProvider = new Lang.Class({
|
||||
this.searchSystem.pushResults(this, this._appSys.subsearch(previousResults, terms));
|
||||
},
|
||||
|
||||
activateResult: function(app, params) {
|
||||
params = Params.parse(params, { workspace: -1,
|
||||
timestamp: 0 });
|
||||
|
||||
activateResult: function(app) {
|
||||
let event = Clutter.get_current_event();
|
||||
let modifiers = event ? event.get_state() : 0;
|
||||
let openNewWindow = modifiers & Clutter.ModifierType.CONTROL_MASK;
|
||||
|
||||
if (openNewWindow)
|
||||
app.open_new_window(params.workspace);
|
||||
app.open_new_window(-1);
|
||||
else
|
||||
app.activate_full(params.workspace, params.timestamp);
|
||||
app.activate();
|
||||
},
|
||||
|
||||
dragActivateResult: function(id, params) {
|
||||
@ -402,15 +399,8 @@ const SettingsSearchProvider = new Lang.Class({
|
||||
this.searchSystem.pushResults(this, this._appSys.search_settings(terms));
|
||||
},
|
||||
|
||||
activateResult: function(pref, params) {
|
||||
params = Params.parse(params, { workspace: -1,
|
||||
timestamp: 0 });
|
||||
|
||||
pref.activate_full(params.workspace, params.timestamp);
|
||||
},
|
||||
|
||||
dragActivateResult: function(pref, params) {
|
||||
this.activateResult(pref, params);
|
||||
activateResult: function(pref) {
|
||||
pref.activate();
|
||||
},
|
||||
|
||||
createResultActor: function (resultMeta, terms) {
|
||||
|
Reference in New Issue
Block a user