summaryrefslogtreecommitdiff
path: root/caribou/antler
diff options
context:
space:
mode:
authorEitan Isaacson <eitan@monotonous.org>2011-05-03 16:34:02 -0700
committerEitan Isaacson <eitan@monotonous.org>2011-05-05 15:30:42 -0400
commit6a2b8e4ed30ba7cd680e5731021b2b3878ed2665 (patch)
treefd51d39e14d28799e01503eb28d8d3033f62e589 /caribou/antler
parentedc0c69c36ed773d13276889390faa3ce57bf5ff (diff)
downloadcaribou-6a2b8e4ed30ba7cd680e5731021b2b3878ed2665.tar.gz
Show Antler settings in Antler
Diffstat (limited to 'caribou/antler')
-rw-r--r--caribou/antler/keyboard_view.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/caribou/antler/keyboard_view.py b/caribou/antler/keyboard_view.py
index 6cea11b..ded45a9 100644
--- a/caribou/antler/keyboard_view.py
+++ b/caribou/antler/keyboard_view.py
@@ -1,5 +1,6 @@
from caribou.settings.preferences_window import PreferencesDialog
from caribou.settings import CaribouSettings
+from antler_settings import AntlerSettings
from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import Caribou
@@ -31,7 +32,8 @@ class AntlerKey(Gtk.Button):
self._sublevel = AntlerSubLevel(self)
def _on_prefs_clicked(self, key):
- p = PreferencesDialog(CaribouSettings())
+ p = PreferencesDialog(AntlerSettings())
+ p.populate_settings(CaribouSettings())
p.show_all()
p.run()
p.destroy()