From 47ea3ba2ae4930274f327c0bf2e9fd071913f42e Mon Sep 17 00:00:00 2001 From: Harry Twyford Date: Thu, 5 Dec 2019 16:50:03 +0000 Subject: [PATCH] Bug 1601325 - Increase UrlbarView wrap threshold to 500px. r=dao Differential Revision: https://phabricator.services.mozilla.com/D55984 --HG-- extra : moz-landing-system : lando --- browser/components/urlbar/UrlbarView.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/components/urlbar/UrlbarView.jsm b/browser/components/urlbar/UrlbarView.jsm index a1d2e17d474a..69022f25c279 100644 --- a/browser/components/urlbar/UrlbarView.jsm +++ b/browser/components/urlbar/UrlbarView.jsm @@ -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");