diff options
author | Kris Maglione <maglione.k@gmail.com> | 2010-12-30 00:30:12 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2010-12-30 00:30:12 -0500 |
commit | 1dd8efea4facc6b604179d27114e31c8074c8a16 (patch) | |
tree | aae74de8eb26d65bf4f1b9b07ecf164533c673b9 /common/content/dactyl.js | |
parent | 5f1c47ee20bbbf35e6e477daba25e20feb88137e (diff) | |
download | pentadactyl-1dd8efea4facc6b604179d27114e31c8074c8a16.tar.gz |
Fix sizing of pinned tabs after toggling tab numbers.
Diffstat (limited to 'common/content/dactyl.js')
-rw-r--r-- | common/content/dactyl.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 87925e03..44c90fad 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -1370,6 +1370,8 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { tabs.tabBinding.enabled = Array.some(opts, function (k) k in this.opts, this); tabs.updateTabCount(); } + if (config.tabbrowser.tabContainer._positionPinnedTabs) + config.tabbrowser.tabContainer._positionPinnedTabs(); } } ].filter(function (group) !group.feature || dactyl.has(group.feature)); |