Bug 1601325 - Increase UrlbarView wrap threshold to 500px. r=dao

Differential Revision: https://phabricator.services.mozilla.com/D55984

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Harry Twyford 2019-12-05 16:50:03 +00:00
Родитель 8fec672a52
Коммит 47ea3ba2ae
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1374,7 +1374,7 @@ class UrlbarView {
}
_enableOrDisableRowWrap() {
if (getBoundsWithoutFlushing(this.input.textbox).width <= 425) {
if (getBoundsWithoutFlushing(this.input.textbox).width <= 500) {
this._rows.setAttribute("wrap", "true");
} else {
this._rows.removeAttribute("wrap");