Bug 881776 - Only update entry with title updates when not editing (r=mfinkle)

This commit is contained in:
Lucas Rocha 2013-06-13 11:44:28 +01:00
parent dc193939e9
commit 69e0ed1054

View File

@ -1054,7 +1054,10 @@ public class BrowserToolbar implements TextWatcher,
}
String url = tab.getURL();
mUrlEditText.setText(url);
if (!isEditing()) {
mUrlEditText.setText(url);
}
// Setting a null title will ensure we just see the "Enter Search or Address" placeholder text.
if ("about:home".equals(url) || "about:privatebrowsing".equals(url)) {