diff options
Diffstat (limited to 'src/com/android/browser/PieControl.java')
-rw-r--r-- | src/com/android/browser/PieControl.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/com/android/browser/PieControl.java b/src/com/android/browser/PieControl.java index 7c4291c..a33f8c6 100644 --- a/src/com/android/browser/PieControl.java +++ b/src/com/android/browser/PieControl.java @@ -118,6 +118,15 @@ public class PieControl implements PieMenu.PieController, OnClickListener { if (tab != null) { mForward.setEnabled(tab.canGoForward()); } + WebView view = mUiController.getCurrentWebView(); + if (view != null) { + ImageView icon = (ImageView) mRDS.getView(); + if (mUiController.getSettings().hasDesktopUseragent(view)) { + icon.setImageResource(R.drawable.ic_mobile); + } else { + icon.setImageResource(R.drawable.ic_desktop_holo_dark); + } + } return true; } |