Fix window class of Android tooltips
* java/org/gnu/emacs/EmacsWindow.java (getWindowLayoutParams): Declare as a panel, rather than an attached dialog.
This commit is contained in:
parent
6a162be6a8
commit
fb04a51894
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ private static class Coordinate
|
|||
rect = getGeometry ();
|
||||
flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
|
||||
flags |= WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
|
||||
type = WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
|
||||
type = WindowManager.LayoutParams.TYPE_APPLICATION_PANEL;
|
||||
|
||||
params
|
||||
= new WindowManager.LayoutParams (rect.width (), rect.height (),
|
||||
|
|
Loading…
Add table
Reference in a new issue