diff options
author | Eitan Isaacson <eitan@monotonous.org> | 2011-05-31 11:33:38 -0700 |
---|---|---|
committer | Eitan Isaacson <eitan@monotonous.org> | 2011-06-01 12:47:01 -0700 |
commit | 22ed36c74597159cf4866abee35bb898127dea5a (patch) | |
tree | 8d69b0934a709fdc033fc0e91212866c2b2ec254 /caribou/settings | |
parent | 6e333d1e0ac6bf25b70b16341bf70d3adc17137d (diff) | |
download | caribou-22ed36c74597159cf4866abee35bb898127dea5a.tar.gz |
Have UI choose keyboard type.
Diffstat (limited to 'caribou/settings')
-rw-r--r-- | caribou/settings/caribou_settings.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/caribou/settings/caribou_settings.py b/caribou/settings/caribou_settings.py index 3d2c219..f3f9b00 100644 --- a/caribou/settings/caribou_settings.py +++ b/caribou/settings/caribou_settings.py @@ -3,19 +3,7 @@ from caribou.i18n import _ CaribouSettings = SettingsTopGroup( _("Caribou Preferences"), "/org/gnome/caribou/", "org.gnome.caribou", - [SettingsGroup("keyboard", _("Keyboard"), [ - SettingsGroup("general", _("General"), [ - StringSetting( - "keyboard_type", _("Keyboard Type"), "touch", - _("The keyboard geometery Caribou should use"), - _("The keyboard geometery determines the shape " - "and complexity of the keyboard, it could range from " - "a 'natural' look and feel good for composing simple " - "text, to a fullscale keyboard."), - allowed=[(('touch'), _('Touch')), - (('scan'), _('Scan'))])]), - ]), - SettingsGroup("scanning", _("Scanning"), [ + [SettingsGroup("scanning", _("Scanning"), [ BooleanSetting( "scan_enabled", _("Enable scanning"), False, _("Enable switch scanning"), |