Prevent URL-box resetting on cursor movement
Stop the URL-box from resetting to the current URL (or blank) whenever the user clicks on it to move the cursor
This commit is contained in:
parent
80ab4aff35
commit
f235a56ed9
@ -550,13 +550,13 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String url = currentView.getUrl();
|
String url = currentView.getUrl();
|
||||||
if (UrlUtils.isSpecialUrl(url)) {
|
if (!UrlUtils.isSpecialUrl(url)) {
|
||||||
mSearch.setText("");
|
if (!mSearch.hasFocus()) {
|
||||||
} else {
|
|
||||||
mSearch.setText(url);
|
mSearch.setText(url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private class DrawerLocker implements DrawerListener {
|
private class DrawerLocker implements DrawerListener {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user