mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
* java/org/gnu/emacs/EmacsContextMenu.java (display): Reduce timeout.
This commit is contained in:
parent
3b34c5e4a5
commit
0a4d4781dd
|
|
@ -367,16 +367,15 @@ private static final class Item implements MenuItem.OnMenuItemClickListener
|
|||
rc = display1 (window, xPosition, yPosition);
|
||||
|
||||
/* Android 3.0 to Android 7.0 perform duplicate calls to
|
||||
onContextMenuClosed after a context menu is dismissed for
|
||||
the second or third time. Since the second call after such
|
||||
a dismissal is otherwise liable to prematurely cancel any
|
||||
context menu displayed immediately afterwards, ignore calls
|
||||
received within 300 milliseconds of this menu's being
|
||||
displayed. */
|
||||
onContextMenuClosed the second time a context menu is
|
||||
dismissed. Since the second call after such a dismissal is
|
||||
otherwise liable to prematurely cancel any context menu
|
||||
displayed immediately afterwards, ignore calls received
|
||||
within 150 milliseconds of this menu's being displayed. */
|
||||
|
||||
if (rc && Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB
|
||||
&& Build.VERSION.SDK_INT < Build.VERSION_CODES.N)
|
||||
wasSubmenuSelected = System.currentTimeMillis ();
|
||||
wasSubmenuSelected = System.currentTimeMillis () - 150;
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue