wayland: use xdg_output's description if there's no 'model'

This commit is contained in:
Daniel Eklöf 2020-06-25 17:30:51 +02:00
parent bc82d4ee28
commit 32e70263f9
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 13 additions and 4 deletions

View file

@ -19,7 +19,6 @@ struct monitor {
struct wayland *wayl;
struct wl_output *output;
struct zxdg_output_v1 *xdg;
char *name;
uint32_t wl_name;
int x;
@ -63,8 +62,14 @@ struct monitor {
float refresh;
enum wl_output_subpixel subpixel;
/* From wl_output */
char *make;
char *model;
/* From xdg_output */
char *name;
char *description;
float inch; /* e.g. 24" */
};