2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-01 06:35:09 +00:00

systemvolumeplugin: make long-press display device details, instead of displaying the label again

This commit is contained in:
Piyush Aggarwal
2021-06-21 10:52:27 +05:30
parent 5189d238d0
commit e86f731188

View File

@@ -78,7 +78,7 @@ class SinkItemHolder extends RecyclerView.ViewHolder
@Override @Override
public boolean onLongClick(View v) { public boolean onLongClick(View v) {
Toast.makeText(v.getContext(), sink.getDescription(), Toast.LENGTH_SHORT).show(); Toast.makeText(v.getContext(), sink.getName(), Toast.LENGTH_SHORT).show();
return true; return true;
} }