diff --git a/app/src/main/java/com/limelight/PcView.java b/app/src/main/java/com/limelight/PcView.java index 376e0b6b..689a7fc7 100644 --- a/app/src/main/java/com/limelight/PcView.java +++ b/app/src/main/java/com/limelight/PcView.java @@ -517,6 +517,12 @@ public class PcView extends Activity implements AdapterFragmentCallbacks { if (details.equals(computer.details)) { pcGridAdapter.removeComputer(computer); pcGridAdapter.notifyDataSetChanged(); + + if (pcGridAdapter.getCount() == 0) { + // Show the "Discovery in progress" view + noPcFoundLayout.setVisibility(View.VISIBLE); + } + break; } }