commit 51baad0e9b5fa734e925ee3c241e312d6cb9002c
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Tue Sep 7 13:08:37 2021 +0200

    Simplify Play Screen popups.

diff --git a/src/main/java/org/distorted/screens/RubikScreenPlay.java b/src/main/java/org/distorted/screens/RubikScreenPlay.java
index 7de62722..0fd02602 100644
--- a/src/main/java/org/distorted/screens/RubikScreenPlay.java
+++ b/src/main/java/org/distorted/screens/RubikScreenPlay.java
@@ -139,8 +139,6 @@ public class RubikScreenPlay extends RubikScreenBase
 
           mObjectPopup.showAsDropDown(view, margin, margin);
           mObjectPopup.update(view, mObjectSize*mColCount, mObjectSize*rowCount);
-          mObjectPopup.setFocusable(true);
-          mObjectPopup.update();
           }
         }
       });
@@ -173,8 +171,6 @@ public class RubikScreenPlay extends RubikScreenBase
 
           mPlayPopup.showAsDropDown(view, margin, margin);
           mPlayPopup.update(view, mPlayLayoutWidth, Math.min(popupHeight,maxHeight));
-          mPlayPopup.setFocusable(true);
-          mPlayPopup.update();
           }
         }
       });
@@ -200,7 +196,6 @@ public class RubikScreenPlay extends RubikScreenBase
 
           mMenuPopup.showAsDropDown(view, (int)(-width/12), margin, Gravity.CENTER);
           mMenuPopup.update(view, mMenuLayoutWidth, mMenuLayoutHeight);
-          mMenuPopup.setFocusable(true);
           }
         }
       });
