Skip to content

Commit bc0cb90

Browse files
committed
Fix for full height editor in File Editor panel
1 parent 20ce45b commit bc0cb90

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

TracyDebugger.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class TracyDebugger extends WireData implements Module, ConfigurableModule {
4141
'summary' => __('Tracy debugger from Nette with several PW specific custom tools.', __FILE__),
4242
'author' => 'Adrian Jones',
4343
'href' => 'https://processwire.com/talk/topic/12208-tracy-debugger/',
44-
'version' => '4.9.6',
44+
'version' => '4.9.7',
4545
'autoload' => true,
4646
'singular' => true,
4747
'requires' => 'ProcessWire>=2.7.2, PHP>=5.4.4',

docs/_coverpage.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Integrates and extends Nette's Tracy debugging tool
1313
![Tracy Debug Bar Kitchen Sink](img/debug-bar-kitchen-sink.png "Tracy Debug Bar")
1414

1515
<br />
16+
<a class="github-button" href="https://github.com/adrianbj/TracyDebugger" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star adrianbj/TracyDebugger on GitHub">Star</a>
1617

1718
[GitHub](https://github.com/adrianbj/TracyDebugger)
1819
[ProcessWire Modules Directory](http://modules.processwire.com/modules/tracy-debugger/)

docs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,6 @@
105105
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
106106
<script src="//unpkg.com/prismjs/components/prism-php.min.js"></script>
107107
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
108+
<script async defer src="https://buttons.github.io/buttons.js"></script>
108109
</body>
109110
</html>

panels/FileEditorPanel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public function getPanel() {
200200

201201
$out .= '
202202
</div>
203-
<div id="tracyFileEditorCodeContainer" style="float: left; width: calc(100vw - 390px) !important;">
203+
<div id="tracyFileEditorCodeContainer" style="float: left; width: calc(100vw - 400px) !important;">
204204
<div id="tracyFileEditorCode" style="visibility:hidden; height:100px; position:relative;"></div><br />
205205
<form id="tracyFileEditorSubmission" method="post" action="'.\TracyDebugger::inputUrl(true).'">
206206
<fieldset>

0 commit comments

Comments
 (0)