remove kb handling due to missing focus

This commit is contained in:
Raphael Robatsch 2021-10-26 15:32:25 +02:00
commit 4556789b0e
6 changed files with 25 additions and 26 deletions

View file

@ -3,7 +3,6 @@ project('somebar', ['c', 'cpp'],
wayland_dep = dependency('wayland-client')
wayland_cursor_dep = dependency('wayland-cursor')
qt5 = import('qt5')
qt5_dep = dependency('qt5', modules: ['Core', 'Gui'])
subdir('protocols')
@ -13,4 +12,4 @@ executable('somebar',
'src/shm_buffer.cpp',
'src/bar.cpp',
wayland_sources,
dependencies: [qt5_dep, wayland_dep, wayland_cursor_dep])
dependencies: [wayland_dep, wayland_cursor_dep, qt5_dep])