Bug 1629928 - Increase the threshold for wrapping urlbar results to a second line. r=harry

Differential Revision: https://phabricator.services.mozilla.com/D72028
This commit is contained in:
Marco Bonardo 2020-04-22 20:49:14 +00:00
Родитель 7f322416a3
Коммит 00db29f90e
1 изменённых файлов: 1 добавлений и 1 удалений

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

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