diff options
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hig.py')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hig.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py index 778d84331c..f52510c552 100644 --- a/bitbake/lib/bb/ui/crumbs/hig.py +++ b/bitbake/lib/bb/ui/crumbs/hig.py | |||
@@ -270,6 +270,9 @@ class CrumbsMessageDialog(CrumbsDialog): | |||
270 | # | 270 | # |
271 | class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): | 271 | class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): |
272 | 272 | ||
273 | (BUILD_ENV_PAGE_ID, | ||
274 | PROXIES_PAGE_ID) = range(2) | ||
275 | |||
273 | def __init__(self, title, configuration, all_image_types, | 276 | def __init__(self, title, configuration, all_image_types, |
274 | all_package_formats, all_distros, all_sdk_machines, | 277 | all_package_formats, all_distros, all_sdk_machines, |
275 | max_threads, parent, flags, buttons=None): | 278 | max_threads, parent, flags, buttons=None): |
@@ -624,6 +627,8 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): | |||
624 | 627 | ||
625 | self.show_all() | 628 | self.show_all() |
626 | 629 | ||
630 | def switch_to_page(self, page_id): | ||
631 | self.nb.set_current_page(page_id) | ||
627 | 632 | ||
628 | # | 633 | # |
629 | # AdvancedSettings Dialog | 634 | # AdvancedSettings Dialog |