[PATCH] ui: Fix default window_id value

2020-09-22 Thread Samuel Thibault
./chardev/baum.c expects the default window_id value to be -1, and not 0 which could be confused with a proper window id (when numbered from 0 by the ui backend). This fixes getting Braille output with the curses and gtk frontends. Signed-off-by: Samuel Thibault Fixes: f29b3431f62 ("console: mov

Re: [PATCH] ui: Fix default window_id value

2020-09-14 Thread Philippe Mathieu-Daudé
On 9/14/20 12:06 PM, Samuel Thibault wrote: > ./chardev/baum.c expects the default window_id value to be -1, and not 0 > which could be confused with a proper window id (when numbered from 0 by > the ui backend). > > This fixes getting Braille output with the curses and gtk frontends. > > Signed-

[PATCH] ui: Fix default window_id value

2020-09-14 Thread Samuel Thibault
./chardev/baum.c expects the default window_id value to be -1, and not 0 which could be confused with a proper window id (when numbered from 0 by the ui backend). This fixes getting Braille output with the curses and gtk frontends. Signed-off-by: Samuel Thibault --- It would be useful to backpo