/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to preferences/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-14 20:12:19 UTC
  • Revision ID: jelmer@samba.org-20110314201219-wo692nzwywu6mevh
Fix formatting, imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
class PreferencesWindow(gtk.Dialog):
31
31
    """Displays global preferences windows."""
32
 
    # Note that we don't allow configuration of aliases or 
33
 
    # default log formats. This is because doing so wouldn't make 
34
 
    # a lot of sense to pure GUI users. Users that need these settings 
 
32
    # Note that we don't allow configuration of aliases or
 
33
    # default log formats. This is because doing so wouldn't make
 
34
    # a lot of sense to pure GUI users. Users that need these settings
35
35
    # will already be familiar with the configuration file.
36
36
 
37
37
    def __init__(self, config=None):
60
60
        self.action_area.set_border_width(12)
61
61
 
62
62
    def _create_pages(self):
63
 
        return [("Identity", IdentityPage(self.config)), 
 
63
        return [("Identity", IdentityPage(self.config)),
64
64
                ("Plugins", PluginsPage()),
65
65
                ("Notifications", NotificationsPage(self.config))]
66
66