Minor fixes

This commit is contained in:
fwsmit 2021-01-09 14:34:52 +01:00
parent 3ba614b59b
commit 3822f09185
4 changed files with 3 additions and 5 deletions

2
.gitignore vendored
View File

@ -16,5 +16,3 @@ vgcore.*
/dunst.systemd.service /dunst.systemd.service
/org.knopwob.dunst.service /org.knopwob.dunst.service
/test/test /test/test
# /src/wayland/protocols/*.h

View File

@ -35,6 +35,7 @@ endif
ifneq (0,${WAYLAND}) ifneq (0,${WAYLAND})
DATA_DIR_WAYLAND_PROTOCOLS ?= $(shell $(PKG_CONFIG) wayland-protocols --variable=pkgdatadir) DATA_DIR_WAYLAND_PROTOCOLS ?= $(shell $(PKG_CONFIG) wayland-protocols --variable=pkgdatadir)
DATA_DIR_WAYLAND_PROTOCOLS := ${DATA_DIR_WAYLAND_PROTOCOLS}
ifeq (,${DATA_DIR_WAYLAND_PROTOCOLS}) ifeq (,${DATA_DIR_WAYLAND_PROTOCOLS})
$(warning "Failed to query $(PKG_CONFIG) for package 'wayland-protocols'!") $(warning "Failed to query $(PKG_CONFIG) for package 'wayland-protocols'!")
endif endif

View File

@ -78,7 +78,6 @@ static gboolean run(void *data)
draw(); draw();
output->win_show(win); output->win_show(win);
} else { } else {
LOG_I("Calling win_hide");
output->win_hide(win); output->win_hide(win);
} }