Changes between Initial Version and Version 1 of Ticket #1916
- Timestamp:
- 07/11/18 17:39:50 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1916
- Property Owner changed from Antoine Martin to ibuprofene
-
Ticket #1916 – Description
initial v1 4 4 5 5 So I succeeded "fixing" the bug with a trick: 6 {{{while true; do 6 {{{ 7 while true; do 7 8 xwininfo -display $XPRADISPLAY -root -children | tail -n+7 | head -n-1 | grep -viPe '(xpra|wccoaui|has no name?)' | xargs -L 1 | cut -d' ' -f1 | xargs -i xdotool windowmap {} 8 9 sleep 1 9 done }}} 10 done 11 }}} 10 12 11 13 I catch the window and I force it to reappear, but there is probably a much better way to do it. 12 14 13 Here: https://pastecode.xyz/view/raw/0fdc7b5f , there is a diff between before apply the fix anfafter, it seem that it comes from map state and parent window fields, they differ in the diff.15 Here: [https://pastecode.xyz/view/raw/0fdc7b5f] , there is a diff between before apply the fix and after, it seem that it comes from map state and parent window fields, they differ in the diff. 14 16 15 17 I hop I gave you enough information to understand the issue, thank you in advance.