From 20d5e8a30d7b33d055a93e0f771b40180f1605fc Mon Sep 17 00:00:00 2001 From: Juuso Lehtinen Date: Sun, 8 Oct 2017 16:13:53 +0300 Subject: [PATCH] Increased preset list max height Fixes possible overlapping when multiple tag references are expanded. New max-height 190 px = button 80 px + content 110 px Closes #4023 --- modules/ui/preset_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/preset_list.js b/modules/ui/preset_list.js index 69a14e801..b1326b281 100644 --- a/modules/ui/preset_list.js +++ b/modules/ui/preset_list.js @@ -223,7 +223,7 @@ export function uiPresetList(context) { box.transition() .duration(200) .style('opacity', '1') - .style('max-height', 200 + preset.members.collection.length * 80 + 'px') + .style('max-height', 200 + preset.members.collection.length * 190 + 'px') .style('padding-bottom', '20px'); } };