Removed tooltips

This commit is contained in:
M66B
2025-03-25 15:51:37 +01:00
parent 820cad9a1e
commit b5b1ca8c5c
4 changed files with 0 additions and 4 deletions

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);