@mikeill This plugin doesn’t seem to be seeing much in the way of active development so, to reduce the logspam, here’s a quick fix for the deprecated constructor call:
File: plugins/debug-bar/panels/class-debug-bar-panel.php
Line: 20
_deprecated_constructor( __METHOD__, '0.8.3', __CLASS__ );
Change to:
$e_level = error_reporting();
error_reporting(0);
_deprecated_constructor( __METHOD__, '0.8.3', __CLASS__ );
error_reporting($e_level);
Thread Starter
–
(@arswright)
Confirmed – I am able to scroll while the focus is on the modal dialog (did not catch this earlier because I was using my laptop and was trying the scrollbar, Page Down, and down arrow key – none of which worked).
You’re welcome to consider this issue resolved, though it’d be cool if using the arrow keys (then Enter to select) worked as a means for navigating the directory tree.
Thread Starter
–
(@arswright)
Additional information: Screenshot at imgur.com