summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/TabControl.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/browser/TabControl.java')
-rw-r--r--src/com/android/browser/TabControl.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/browser/TabControl.java b/src/com/android/browser/TabControl.java
index 2f39302..57e55c4 100644
--- a/src/com/android/browser/TabControl.java
+++ b/src/com/android/browser/TabControl.java
@@ -423,6 +423,8 @@ class TabControl {
// Create a new tab and add it to the tab list
Tab t = new Tab(w, closeOnExit);
mTabs.add(t);
+ // Initially put the tab in the background.
+ putTabInBackground(t);
return t;
}