mirror of
https://framagit.org/tom79/fedilab-tube
synced 2025-05-24 07:34:17 +02:00
Some fixes with video menu
This commit is contained in:
parent
91a1380fef
commit
f0ff8a6feb
@ -1678,12 +1678,18 @@ public class PeertubeActivity extends AppCompatActivity implements CommentListAd
|
||||
binding.videoParams.getGlobalVisibleRect(viewRectParams);
|
||||
if (binding.videoParams.getVisibility() == View.VISIBLE && !viewRectParams.contains((int) event.getRawX(), (int) event.getRawY())) {
|
||||
closeMainMenuOptions();
|
||||
if (binding.videoParamsSubmenu.getVisibility() == View.VISIBLE) {
|
||||
closeSubMenuMenuOptions();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
Rect viewRectParamsSub = new Rect();
|
||||
binding.videoParamsSubmenu.getGlobalVisibleRect(viewRectParamsSub);
|
||||
if (binding.videoParamsSubmenu.getVisibility() == View.VISIBLE && !viewRectParamsSub.contains((int) event.getRawX(), (int) event.getRawY())) {
|
||||
closeSubMenuMenuOptions();
|
||||
if (binding.videoParams.getVisibility() == View.VISIBLE) {
|
||||
closeMainMenuOptions();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user