You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have two monitors and want to execute xjadeo on the second one, which starts at 1920x0. After configuring WINPOSX to 1920, xjadeo still opens on position 0x0. After checking sources, two issues have been found.
First: Within configfile.c, WINPOS gets read before WINPOSX. But because of the string match, WINPOS gets always read and never WINPOSX.
Second: After using the WINPOS, it still not works. Reason is that Y coordinate was still set to 0. Within function js_apply of xjadeo.c, js_winx and js_winy are set if both are different to 0.
Solution for that situation was for me, to set Y coordinate to 1. But then there is a white line visible.
The text was updated successfully, but these errors were encountered:
Hi,
I have two monitors and want to execute xjadeo on the second one, which starts at 1920x0. After configuring WINPOSX to 1920, xjadeo still opens on position 0x0. After checking sources, two issues have been found.
First: Within configfile.c, WINPOS gets read before WINPOSX. But because of the string match, WINPOS gets always read and never WINPOSX.
Second: After using the WINPOS, it still not works. Reason is that Y coordinate was still set to 0. Within function js_apply of xjadeo.c, js_winx and js_winy are set if both are different to 0.
Solution for that situation was for me, to set Y coordinate to 1. But then there is a white line visible.
The text was updated successfully, but these errors were encountered: