output: render an overlay when dialogs are open

Fixes #6.
This commit is contained in:
Jente Hidskes 2019-01-04 18:33:59 +01:00
parent c848bafaed
commit 8faf7a2f59
No known key found for this signature in database
GPG key ID: 04BE5A29F32D91EA
3 changed files with 17 additions and 1 deletions

1
seat.h
View file

@ -70,5 +70,6 @@ struct cg_seat *cg_seat_create(struct cg_server *server);
void cg_seat_destroy(struct cg_seat *seat);
struct cg_view *seat_get_focus(struct cg_seat *seat);
void seat_set_focus(struct cg_seat *seat, struct cg_view *view);
bool have_dialogs_open(struct cg_server *server);
#endif