mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
Remove debug logging, make activation work for non-search mode too
svn path=/trunk/; revision=99
This commit is contained in:
parent
dd4db82475
commit
b535a8949b
2 changed files with 0 additions and 5 deletions
|
|
@ -316,12 +316,10 @@ AppDisplay.prototype = {
|
|||
_selectIndex: function(index) {
|
||||
if (this._selectedIndex != -1) {
|
||||
let prev = this._findDisplayedByIndex(this._selectedIndex);
|
||||
log("demarking " + prev);
|
||||
prev.markSelected(false);
|
||||
}
|
||||
this._selectedIndex = index;
|
||||
let item = this._findDisplayedByIndex(index);
|
||||
log("marking " + item);
|
||||
item.markSelected(true);
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -95,14 +95,11 @@ Sideshow.prototype = {
|
|||
});
|
||||
});
|
||||
this._searchEntry.connect('activate', function (se) {
|
||||
if (!me._searchActive)
|
||||
return false;
|
||||
me._appdisplay.searchActivate();
|
||||
return true;
|
||||
});
|
||||
this._searchEntry.connect('key-press-event', function (se, e) {
|
||||
let code = e.get_code();
|
||||
log("code: " + code);
|
||||
if (code == 111) {
|
||||
me._appdisplay.selectUp();
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue