Force Scratchpad textbox to be LTR in all locales. Bug 668960, r=mihai.sucan

This commit is contained in:
Simon Montagu 2011-07-06 16:24:46 +03:00
Родитель 2a8c2219fe
Коммит 87450fa36b
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -643,6 +643,9 @@ var Scratchpad = {
this._tabCharacter = expandtab ? (new Array(tabsize + 1)).join(" ") : "\t";
this.textbox.style.MozTabSize = tabsize;
// Force LTR direction (otherwise the textbox inherits the locale direction)
this.textbox.style.direction = "ltr";
this.insertIntro();
// Make the Tab key work.