1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-05 22:20:24 -08:00

Merge from savannah/emacs-30

e97be722d3 Properly move existing tooltips on Android
0cf3d34152 ; * ChangeLog.4: Reformat down to 28 March 2024.
ccaa0be8e7 ; * ChangeLog.4: Check in ommitted change.
b5410cbea2 ; * ChangeLog.4: Fix log entries down to the 1 May 2024.
be7625cae7 ; Fix typos
d447cd9fcc ; * ChangeLog.4: Update.
5dc2a57375 ; * admin/authors.el (authors-ignored-files): Ignore gnus...
This commit is contained in:
Po Lu 2025-02-19 15:36:08 +08:00
commit 4fb5ff5426
8 changed files with 5147 additions and 4071 deletions

View file

@ -365,8 +365,17 @@ public final class EmacsWindow extends EmacsHandleObject
run ()
{
if (overrideRedirect)
/* Set the layout parameters again. */
view.setLayoutParams (getWindowLayoutParams ());
{
WindowManager.LayoutParams params;
/* Set the layout parameters again. */
params = getWindowLayoutParams ();
view.setLayoutParams (params);
/* Announce this update to the window server. */
if (windowManager != null)
windowManager.updateViewLayout (view, params);
}
view.mustReportLayout = true;
view.requestLayout ();