2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 21:55:10 +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
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;
}