deskutils/freeplane: Fix an issue with menus in Wayland

- Fix an issue with dropdown menus in Wayland that prevents
  to open or select any items with the mouse cursor.
- Bump PORTREVISION
This commit is contained in:
Nicola Vitale 2025-02-15 14:31:39 +01:00
parent 3a1f830b53
commit 1ed83a3023
No known key found for this signature in database
GPG key ID: A51E190C4C0808D0
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,6 @@
PORTNAME= freeplane
DISTVERSION= 1.12.9
PORTREVISION= 1
CATEGORIES= deskutils editors java
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable
DISTNAME= ${PORTNAME}_bin-${PORTVERSION}

View file

@ -1,3 +1,9 @@
#!/bin/sh
# Fix an issue with dropdown menu in Wayland that prevents
# to open or select any items with the mouse cursor.
if [ -n "$WAYLAND_DISPLAY" ]; then
export _JAVA_AWT_WM_NONREPARENTING=1
fi
exec %%DATADIR%%/freeplane.sh "$@"