Bug 567681 - Tab strip doesn't remain scrolled to the end when closing a tab. r=mano

This commit is contained in:
Dão Gottwald 2010-05-27 11:00:48 +02:00
Родитель eb52923dcf
Коммит dfad060a9f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2595,7 +2595,7 @@
// of the tabstrip, we need to ensure that we stay
// completely scrolled to the right side
var tabStrip = this.mTabstrip;
if (tabStrip.scrollPosition + tabStrip.scrollClientSize >=
if (tabStrip.scrollPosition + tabStrip.scrollClientSize >
tabStrip.scrollSize)
tabStrip.scrollByPixels(-1);
} catch (e) {}