From ef46e45b439cfdc7f41ba0edd4f8e341d782785b Mon Sep 17 00:00:00 2001 From: Ed Sanders Date: Fri, 29 Sep 2017 16:14:29 +0100 Subject: [PATCH] Set padded=false for link inspector Logically depends on I615b485a272. Bug: T177080 Change-Id: Ica54238d891fa41eefb0b9216eb4f2190818a502 --- modules/ve-mw/ui/inspectors/ve.ui.MWLinkAnnotationInspector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ve-mw/ui/inspectors/ve.ui.MWLinkAnnotationInspector.js b/modules/ve-mw/ui/inspectors/ve.ui.MWLinkAnnotationInspector.js index b1ba81de62..f8542fcb68 100644 --- a/modules/ve-mw/ui/inspectors/ve.ui.MWLinkAnnotationInspector.js +++ b/modules/ve-mw/ui/inspectors/ve.ui.MWLinkAnnotationInspector.js @@ -16,7 +16,7 @@ */ ve.ui.MWLinkAnnotationInspector = function VeUiMWLinkAnnotationInspector( config ) { // Parent constructor - ve.ui.MWLinkAnnotationInspector.super.call( this, config ); + ve.ui.MWLinkAnnotationInspector.super.call( this, ve.extendObject( { padded: false }, config ) ); }; /* Inheritance */