Bug 591437 - Rename overlay.js to overview.js

Replace 'overlay' with the more descriptive name 'overview'
where the Activities Overview is meant. Call it Overview
(capitalized) in code comments.

The overlay-group and overlay-key provided by Mutter are not
affected, since they may be used for other components than
the Activities Overview.
This commit is contained in:
Sander Dijkhuis
2009-08-11 13:46:10 +02:00
parent 1f31e80c47
commit 47af454115
12 changed files with 148 additions and 148 deletions

View File

@ -198,7 +198,7 @@ AppDisplay.prototype = {
}));
// Load the apps now so it doesn't slow down the first
// transition into the overlay
// transition into the Overview
this._refreshCache();
this._focusInMenus = true;
@ -517,7 +517,7 @@ WellDisplayItem.prototype = {
/* Pick the first window and activate it;
* In the future, we want to have a menu dropdown here. */
let first = this._windows[0];
Main.overlay.activateWindow (first, Clutter.get_current_event_time());
Main.overview.activateWindow(first, Clutter.get_current_event_time());
}
this.emit('activated');
},
@ -814,7 +814,7 @@ AppWell.prototype = {
let app = apps[i];
let display = new WellDisplayItem(app, this.isFavorite);
display.connect('activated', Lang.bind(this, function (display) {
Main.overlay.hide();
Main.overview.hide();
}));
this._grid.actor.add_actor(display.actor);
}