Fix reading boolean settings with osksdl backend.
Before this change, the animations
setting would be parsed as a string
'true'
or 'false'
, which would both be considered as Python True
by
Gtk.Switch::set_active
. With this change, osksdl_read
takes
the setting type into account and returns a bool
for boolean settings.