mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
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 @@ public final class EmacsWindow extends EmacsHandleObject
|
|||
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
Add a link
Reference in a new issue