From 4c2ee2a843691b55ba769e47383c5a532951947d Mon Sep 17 00:00:00 2001 From: girst Date: Sun, 12 May 2019 14:35:27 +0200 Subject: [PATCH] partial fix for `eb' the vbox#browser-panel element was removed and its children (#navigator-toolbox, #content-deck, ...) are now direct descendants of the element. This fix allows selecting and clicking on an item in the toolbar, but any drop down menus that then appear aren't clickable. --- extension/lib/commands.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/lib/commands.coffee b/extension/lib/commands.coffee index c5d566d..e009234 100644 --- a/extension/lib/commands.coffee +++ b/extension/lib/commands.coffee @@ -739,7 +739,7 @@ commands.click_browser_element = ({vim}) -> }) MarkerContainer.remove(window) # Better safe than sorry. markerContainer.container.classList.add('ui') - window.document.getElementById('browser-panel').appendChild( + window.document.getElementById('main-window').appendChild( markerContainer.container ) -- 2.39.3