summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEitan Isaacson <eitan@monotonous.org>2010-12-14 15:54:07 -0800
committerEitan Isaacson <eitan@monotonous.org>2011-01-07 13:34:34 -0800
commit1788b7a040fcb6074ab2bbf322e2385be5661b28 (patch)
tree90ede3d28dfec6b0621044272b40f8bd5711922c /bin
parent0b5e10eed67e5aa0734735ea19c11a611b486624 (diff)
downloadcaribou-1788b7a040fcb6074ab2bbf322e2385be5661b28.tar.gz
Transitioned to introspection GTK3. Things that are not working yet:
- GConf notification. Not critical, will get it working when we move to GSettings. - Scanning. The module needs a lot of work anyway, will probably be doing alot of cleanup with transition. - Proximity opacity. This has been a hidden feature anyway. - Animation. Ditto, it's been hidden. Need to expose those two settings in the UI.
Diffstat (limited to 'bin')
-rw-r--r--bin/caribou.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/caribou.in b/bin/caribou.in
index 9e8e0ae..1c2235c 100644
--- a/bin/caribou.in
+++ b/bin/caribou.in
@@ -27,7 +27,7 @@
from optparse import OptionParser
import gettext
import sys
-import gtk
+from gi.repository import Gtk
import os
# We can't rely on prefix if we're installed by relocated RPM. Instead, we
@@ -67,6 +67,6 @@ if __name__ == "__main__":
main.debug = options.debug
caribou = main.Caribou()
- caribou.window.hide_all()
+ caribou.window.hide()
- gtk.main()
+ Gtk.main()