Re: [dev] Infnite loop in drawbar() when using attachbelow and sending windows between monitors

2020-06-04 Thread Jakub Leszczak
There is a bug in attachbelow patch. Change one line inside attachBelow() function. - if(c->mon->sel == NULL || c->mon->sel->isfloating) { + if (c->mon->sel == NULL || c->mon->sel == c || c->mon->sel->isfloating) { Br, Jakub Leszczak On Thu, Jun 4, 2020 a

Re: [dev] dead acute not working on release 0.8.3

2020-05-12 Thread Jakub Leszczak
Looks like commits related with IME introduced regression. Sounds reasonable, it might be connected to spanish input. I personally know nothing about IME so I cannot help much. All those commits were made by one person. Maybe you could contact with him?

Re: [dev] dead acute not working on release 0.8.3

2020-05-12 Thread Jakub Leszczak
or less middle of `git log --oneline`, then `git checkout COMMIT`, compile and test. If COMMIT works it means bug is in later commit, and if it doesn't work it means that bug is in this or some previous commit. Repeat couple times and voila. This could be very helpful. Br, Jakub Leszczak