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

@ -380,13 +380,13 @@ GenericDisplay.prototype = {
this._redisplay(true);
},
// Launches the item that is currently selected, closing the overlay
// Launches the item that is currently selected, closing the Overview
activateSelected: function() {
if (this._selectedIndex != -1) {
let selected = this._findDisplayedByIndex(this._selectedIndex);
selected.launch();
this.unsetSelected();
Main.overlay.hide();
Main.overview.hide();
}
},