mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-03 07:15:29 -04:00
wayland: log whether CSDs or SSDs are used at info level, not debug
This commit is contained in:
parent
22ce09eb44
commit
def4395bd1
1 changed files with 2 additions and 2 deletions
|
|
@ -648,13 +648,13 @@ xdg_toplevel_decoration_configure(void *data,
|
||||||
|
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
case ZXDG_TOPLEVEL_DECORATION_V1_MODE_CLIENT_SIDE:
|
case ZXDG_TOPLEVEL_DECORATION_V1_MODE_CLIENT_SIDE:
|
||||||
LOG_DBG("using client-side decorations");
|
LOG_INFO("using CSD decorations");
|
||||||
win->use_csd = CSD_YES;
|
win->use_csd = CSD_YES;
|
||||||
csd_instantiate(win);
|
csd_instantiate(win);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ZXDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE:
|
case ZXDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE:
|
||||||
LOG_DBG("using server-side decorations");
|
LOG_INFO("using SSD decorations");
|
||||||
win->use_csd = CSD_NO;
|
win->use_csd = CSD_NO;
|
||||||
csd_destroy(win);
|
csd_destroy(win);
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue