Skip to content

Commit

Permalink
Merge pull request #1672 from mtwebster/cheese-init
Browse files Browse the repository at this point in the history
Add initializers for cheese (user accounts picture taker)
  • Loading branch information
clefebvre committed Feb 6, 2013
2 parents e116cdf + 73a6eae commit 766a5e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion files/usr/lib/cinnamon-settings/cinnamon-settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import gettext
import SettingsWidgets
import capi
from gi.repository import Gio, Gtk, GObject, GdkPixbuf
from gi.repository import Gio, Gtk, GObject, GdkPixbuf, Clutter, Gst
# Standard setting pages... this can be expanded to include applet dirs maybe?
mod_files = glob.glob('/usr/lib/cinnamon-settings/modules/*.py')
mod_files.sort()
Expand Down Expand Up @@ -314,5 +314,7 @@ def on_normal_mode(self, popup):

if __name__ == "__main__":
GObject.threads_init()
Clutter.init(None)
Gst.init(None)
MainWindow()
Gtk.main()

0 comments on commit 766a5e3

Please sign in to comment.