Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Remove Unselect copy paste menu action. (#2112)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored and bluemarvin committed Oct 31, 2019
1 parent 0267c8d commit b5d0290
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,6 @@ public void setActions(@NonNull String[] aActions) {
if (StringUtils.contains(aActions, GeckoSession.SelectionActionDelegate.ACTION_SELECT_ALL)) {
buttons.add(createButton(R.string.context_menu_select_all_text, GeckoSession.SelectionActionDelegate.ACTION_SELECT_ALL, this::handleAction));
}
if (StringUtils.contains(aActions, GeckoSession.SelectionActionDelegate.ACTION_UNSELECT)) {
buttons.add(createButton(R.string.context_menu_unselect, GeckoSession.SelectionActionDelegate.ACTION_UNSELECT, this::handleAction));
}

for (int i = 0; i < buttons.size(); ++i) {
mContainer.addView(buttons.get(i));
Expand Down

0 comments on commit b5d0290

Please sign in to comment.