Bug 365002 - newFolder/Separator methods should not try to focus the controller's view. r=sspitzer.

This commit is contained in:
mozilla.mano%sent.com 2006-12-26 01:57:23 +00:00
Родитель ad3b0edb52
Коммит e24cbab04c
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -1167,7 +1167,6 @@ PlacesController.prototype = {
var txn = new PlacesCreateFolderTransaction(value.value, ip.folderId,
ip.index);
PlacesUtils.tm.doTransaction(txn);
this._view.focus();
view.restoreSelection();
}
},
@ -1181,7 +1180,6 @@ PlacesController.prototype = {
throw Cr.NS_ERROR_NOT_AVAILABLE;
var txn = new PlacesCreateSeparatorTransaction(ip.folderId, ip.index);
PlacesUtils.tm.doTransaction(txn);
this._view.focus();
},
/**