Browse Source

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
master
mtbu 7 years ago
parent
commit
f235a56ed9
  1. 8
      app/src/main/java/acr/browser/lightning/activity/BrowserActivity.java

8
app/src/main/java/acr/browser/lightning/activity/BrowserActivity.java

@ -550,10 +550,10 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements @@ -550,10 +550,10 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements
return;
}
String url = currentView.getUrl();
if (UrlUtils.isSpecialUrl(url)) {
mSearch.setText("");
} else {
mSearch.setText(url);
if (!UrlUtils.isSpecialUrl(url)) {
if (!mSearch.hasFocus()) {
mSearch.setText(url);
}
}
}
}

Loading…
Cancel
Save