Fix 'redeclaration of global' error in lookingGlass.js.

This commit is contained in:
Siegfried-Angel Gevatter Pujals 2009-08-04 02:36:53 +02:00
parent 0792f8d4a3
commit e84e842c1e

View File

@ -175,7 +175,7 @@ LookingGlass.prototype = {
let global = Shell.Global.get();
this._idleHistorySaveId = 0;
let historyPath = Shell.Global.get().configdir + "/lookingglass-history.txt";
let historyPath = global.configdir + "/lookingglass-history.txt";
this._historyFile = Gio.file_new_for_path(historyPath);
this._savedText = null;
this._historyNavIndex = -1;
@ -241,7 +241,6 @@ LookingGlass.prototype = {
this._hierarchy.setTarget(target);
eventHandler.destroy();
this.actor.show();
let global = Shell.Global.get();
global.stage.set_key_focus(this._entry);
return true;
}));