/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: Gustav Hartvigsson
  • Date: 2014-11-25 15:34:07 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20141125153407-827k8g7qy9u5byd5
* Fixed bzr-gtk's viz util, using the new Gtk Inspector.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from bzrlib.config import GlobalConfig
20
20
from bzrlib.plugins.gtk.preferences.identity import IdentityPage
21
21
from bzrlib.plugins.gtk.preferences.plugins import PluginsPage
22
 
from bzrlib.plugins.gtk.preferences.notifications import NotificationsPage
23
22
 
24
23
class PreferencesWindow(Gtk.Dialog):
25
24
    """Displays global preferences windows."""
55
54
 
56
55
    def _create_pages(self):
57
56
        return [("Identity", IdentityPage(self.config)),
58
 
                ("Plugins", PluginsPage()),
59
 
                ("Notifications", NotificationsPage(self.config))]
 
57
                ("Plugins", PluginsPage())]
60
58
 
61
59
    def display(self):
62
60
        self.window.show_all()