@@ -32,7 +32,7 @@ class TracyDebugger extends WireData implements Module, ConfigurableModule {
3232 'summary' => __('Tracy debugger from Nette with several PW specific custom tools.', __FILE__),
3333 'author' => 'Adrian Jones',
3434 'href' => 'https://processwire.com/talk/topic/12208-tracy-debugger/',
35- 'version' => '4.10.18 ',
35+ 'version' => '4.10.19 ',
3636 'autoload' => true,
3737 'singular' => true,
3838 'requires' => 'ProcessWire>=2.7.2, PHP>=5.4.4',
@@ -858,6 +858,7 @@ class TracyDebugger extends WireData implements Module, ConfigurableModule {
858858 function unhideBar() {
859859 document.getElementById("tracy-debug").style.display = "block";
860860 document.getElementById("tracy-show-button").style.display = "none";
861+ window.Tracy.Debug.bar.restorePosition();
861862 document.cookie = "tracyHidden=; expires=Thu, 01 Jan 1970 00:00:01 GMT; path=/";
862863 document.cookie = "tracyShow=1; path=/";';
863864 if($this->showServerTypeIndicator() && $this->data['styleAdminType'] == 'custom') {
@@ -2421,7 +2422,7 @@ class TracyDebugger extends WireData implements Module, ConfigurableModule {
24212422
24222423 $f = $this->wire('modules')->get("InputfieldInteger");
24232424 $f->attr('name', 'panelZindex');
2424- $f->label = __('Starting zIndex for panels', __FILE__);
2425+ $f->label = __('Starting z-index for panels', __FILE__);
24252426 $f->description = __('Adjust if you find panels are below/above elements that you don\'t want.', __FILE__);
24262427 $f->notes = __('Default: 100', __FILE__);
24272428 $f->columnWidth = 33;
0 commit comments