/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.py

  • Committer: Jelmer Vernooij
  • Date: 2007-07-19 13:09:18 UTC
  • Revision ID: jelmer@samba.org-20070719130918-s11nskqrwfdp32xe
Add note about what should and should not be in the preferences dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
class PreferencesWindow(gtk.Dialog):
28
28
    """Displays global preferences windows."""
 
29
    # Note that we don't allow configuration of aliases or 
 
30
    # default log formats. This is because doing so wouldn't make 
 
31
    # a lot of sense to pure GUI users. Users that need these settings 
 
32
    # will already be familiar with the configuration file.
 
33
 
29
34
    def __init__(self, config=None):
30
35
        """ Initialize the Status window. """
31
36
        super(PreferencesWindow, self).__init__(flags=gtk.DIALOG_MODAL)