Removed tooltips

pull/217/head
M66B 6 months ago
parent 820cad9a1e
commit b5b1ca8c5c

@ -175,7 +175,6 @@ public class AdapterNavAccountFolder extends RecyclerView.Adapter<AdapterNavAcco
tvItem.setTypeface(count == 0 ? Typeface.DEFAULT : Typeface.DEFAULT_BOLD);
tvItem.setVisibility(expanded ? View.VISIBLE : View.GONE);
ivItem.setTooltipText(tvItem.getText());
ivItem.setContentDescription(tvItem.getText());
ivItem.setImportantForAccessibility(expanded ? IMPORTANT_FOR_ACCESSIBILITY_NO : IMPORTANT_FOR_ACCESSIBILITY_YES);

@ -121,7 +121,6 @@ public class AdapterNavMenu extends RecyclerView.Adapter<AdapterNavMenu.ViewHold
tvItem.setTypeface(count == null ? Typeface.DEFAULT : Typeface.DEFAULT_BOLD);
tvItem.setVisibility(expanded ? View.VISIBLE : View.GONE);
ivItem.setTooltipText(tvItem.getText());
ivItem.setContentDescription(tvItem.getText());
ivItem.setImportantForAccessibility(expanded ? IMPORTANT_FOR_ACCESSIBILITY_NO : IMPORTANT_FOR_ACCESSIBILITY_YES);

@ -96,7 +96,6 @@ public class AdapterNavSearch extends RecyclerView.Adapter<AdapterNavSearch.View
tvCount.setVisibility(View.GONE);
tvItem.setText(search.name);
ivItem.setTooltipText(tvItem.getText());
ivItem.setContentDescription(tvItem.getText());
ivItem.setImportantForAccessibility(expanded ? IMPORTANT_FOR_ACCESSIBILITY_NO : IMPORTANT_FOR_ACCESSIBILITY_YES);

@ -158,7 +158,6 @@ public class AdapterNavUnified extends RecyclerView.Adapter<AdapterNavUnified.Vi
tvItem.setTypeface(count == 0 ? Typeface.DEFAULT : Typeface.DEFAULT_BOLD);
tvItem.setVisibility(expanded ? View.VISIBLE : View.GONE);
ivItem.setTooltipText(tvItem.getText());
ivItem.setContentDescription(tvItem.getText());
ivItem.setImportantForAccessibility(expanded ? IMPORTANT_FOR_ACCESSIBILITY_NO : IMPORTANT_FOR_ACCESSIBILITY_YES);

Loading…
Cancel
Save