talkatu/talkatu

Fix the input in the demo.
gtk4
2022-02-03, Gary Kramlich
1819a3f27516
Fix the input in the demo.

We had some over zealous can-focus's set to 0 which was the main issue. The
other stuff was just stuff to clean up I found along the way.

Testing Done:
Ran the demo verified I can input text. Sending is still broken but that's another matter entirely...

Reviewed at https://reviews.imfreedom.org/r/1283/
###############################################################################
# Options
###############################################################################
option(
'nls',
type : 'boolean', value : true,
description : 'Install translation files'
)
option(
'doc',
type : 'boolean', value : true, yield : true,
description : 'build documentation with gtk-doc'
)
option(
'help2man',
type : 'boolean', value : true,
description : 'Whether or not to build man pages from --help output'
)
option(
'install-demo',
type : 'boolean', value : true,
description : 'Whether or not to install demo application'
)
option(
'introspection',
type : 'boolean', value : true, yield : true,
description : 'build gobject-introspection support'
)
option(
'tests',
type : 'boolean', value : true,
description : 'run unit tests'
)
option(
'vapi',
type : 'boolean', value : true,
description : 'Whether or not to build vapi files for gplugin'
)