mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
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:
parent
3a1f830b53
commit
1ed83a3023
2 changed files with 7 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
PORTNAME= freeplane
|
PORTNAME= freeplane
|
||||||
DISTVERSION= 1.12.9
|
DISTVERSION= 1.12.9
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= deskutils editors java
|
CATEGORIES= deskutils editors java
|
||||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable
|
||||||
DISTNAME= ${PORTNAME}_bin-${PORTVERSION}
|
DISTNAME= ${PORTNAME}_bin-${PORTVERSION}
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
#!/bin/sh
|
#!/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 "$@"
|
exec %%DATADIR%%/freeplane.sh "$@"
|
||||||
|
|
Loading…
Add table
Reference in a new issue