diff options
Diffstat (limited to 'src/com/android/browser')
-rw-r--r-- | src/com/android/browser/AddBookmarkPage.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/com/android/browser/AddBookmarkPage.java b/src/com/android/browser/AddBookmarkPage.java index 1292bf6..f8957c9 100644 --- a/src/com/android/browser/AddBookmarkPage.java +++ b/src/com/android/browser/AddBookmarkPage.java @@ -229,10 +229,7 @@ public class AddBookmarkPage extends Activity finish(); } } else if (v == mFolder) { - // FIXME: We want to use mFolder as an anchor, but cannot until we - // fix the issue that the PopupMenu will not extend past the edge of - // the dialog. - PopupMenu popup = new PopupMenu(this, mFakeTitle); + PopupMenu popup = new PopupMenu(this, mFolder); popup.getMenuInflater().inflate(R.menu.folder_choice, popup.getMenu()); popup.setOnMenuItemClickListener(this); |