]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/commitdiff
Force updating of URL bar when adding tabs. https://redmine.stoutner.com/issues/654
authorSoren Stoutner <soren@stoutner.com>
Mon, 25 Jan 2021 21:39:48 +0000 (14:39 -0700)
committerSoren Stoutner <soren@stoutner.com>
Mon, 25 Jan 2021 21:39:48 +0000 (14:39 -0700)
app/src/main/java/com/stoutner/privacybrowser/activities/MainWebViewActivity.java

index c5b8b09fc765fcb6a210b811deeb03000eccf8d1..971eaad1fa5c36082d82d5878f5faaf459e16568 100644 (file)
@@ -4824,6 +4824,9 @@ public class MainWebViewActivity extends AppCompatActivity implements CreateBook
     }
 
     private void addNewTab(String url, boolean moveToTab) {
+        // Clear the focus from the URL edit text, so that it will be populated with the information from the new tab.
+        urlEditText.clearFocus();
+
         // Get the new page number.  The page numbers are 0 indexed, so the new page number will match the current count.
         int newTabNumber = tabLayout.getTabCount();