commit | 9727af8453990808bd0a104bd9ceb8671e335ab5 | [log] [tgz] |
---|---|---|
author | Mattias Nilsson <mattias.nilsson@sonymobile.com> | Thu Jun 14 17:07:56 2012 +0200 |
committer | Johan Redestig <johan.redestig@sonymobile.com> | Fri Jul 27 15:25:53 2012 +0200 |
tree | a41fd7f34dad222760469f46e163ac85ed2d271c | |
parent | 3f5abd721a1603f859ca7c8b8d77e103bd904395 [diff] [blame] |
Stop loading subview in stopAllLoading The main webview is stopped twice instead of stopping the subview loading. Correcting this cut and paste error. Change-Id: Ic12c7219d222d42f59e27f1cda0cd65a003b41ca
diff --git a/src/com/android/browser/TabControl.java b/src/com/android/browser/TabControl.java index 993cd11..150ece0 100644 --- a/src/com/android/browser/TabControl.java +++ b/src/com/android/browser/TabControl.java
@@ -571,7 +571,7 @@ } final WebView subview = t.getSubWebView(); if (subview != null) { - webview.stopLoading(); + subview.stopLoading(); } } }