Bug 615728 - When selecting an empty tab, autofocus on the location bar. r=dao

This commit is contained in:
Buu-Minh Ta 2011-04-26 10:48:58 +02:00
parent 1ef24167d8
commit b49d0a96a4

View File

@ -962,14 +962,13 @@
// In full screen mode, only bother making the location bar visible
// if the tab is a blank one.
oldBrowser._urlbarFocused = (gURLBar && gURLBar.focused);
if (newBrowser._urlbarFocused && gURLBar) {
if (!window.fullScreen) {
gURLBar.focus();
break;
} else if (isTabEmpty(this.mCurrentTab)) {
focusAndSelectUrlBar();
break;
}
if (newBrowser._urlbarFocused && gURLBar && !window.fullScreen) {
gURLBar.focus();
break;
}
if (isTabEmpty(this.mCurrentTab)) {
focusAndSelectUrlBar();
break;
}
// If the find bar is focused, keep it focused.