diff options
Diffstat (limited to 'install/ui/navigation.js')
-rw-r--r-- | install/ui/navigation.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/navigation.js b/install/ui/navigation.js index 72c91426..a4ad2898 100644 --- a/install/ui/navigation.js +++ b/install/ui/navigation.js @@ -408,8 +408,8 @@ IPA.navigation = function(spec) { container.tabs('select', index); var tab = tabs[index]; - if (tab.hidden) { - depth--; + if (tab.depth !== undefined) { + depth += tab.depth; } if (tab.children && tab.children.length) { |