You are not logged in.
Whenever I click on a dropdown menu it opens just as expected but as soon as I let go of the
mouse button the menu closes again which leaves me unable to access the elements inside
the dropdown. This is quite impractical as I need to develop Java programs which because
of this issue I cannot fully test.
My window manager is DWM and I am running X11 as display server.
Is there a known fix for this?
Last edited by Equiphract (2021-05-07 11:33:27)
Offline
I have not because I figured this variable would fix something related to AWT whereas I have problems with JavaFX applications.
Nevertheless, I tried it out now:
I put
export _JAVA_AWT_WM_NONREPARENTING=1in my .xinitrc before the WM is launched and then started DWM. Then I made sure the environment variable was set by running export.
It didn't fix my problem.
I also tried
export AWT_TOOLKIT=MToolkitDid not work either...
This is my .xinitrc right now:
#!/bin/sh
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
~/.fehbg &
slstatus &
xbindkeys &
export _JAVA_AWT_WM_NONREPARENTING=1
export AWT_TOOLKIT=MToolkit
exec dbus-launch dwmLast edited by Equiphract (2021-05-09 13:33:59)
Offline