Skip to content

Commit

Permalink
Fix recently introduced bug when using Console small/large buttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianbj committed Mar 1, 2018
1 parent b47b427 commit 17b0c70
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion TracyDebugger.module
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class TracyDebugger extends WireData implements Module, ConfigurableModule {
'summary' => __('Tracy debugger from Nette with several PW specific custom tools.', __FILE__),
'author' => 'Adrian Jones',
'href' => 'https://processwire.com/talk/topic/12208-tracy-debugger/',
'version' => '4.9.23',
'version' => '4.9.24',
'autoload' => true,
'singular' => true,
'requires' => 'ProcessWire>=2.7.2, PHP>=5.4.4',
Expand Down
2 changes: 1 addition & 1 deletion tracy-master/src/Tracy/Debugger.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
class Debugger
{
const VERSION = '2.4.11';
const VERSION = '2.4.12';

/** server modes for Debugger::enable() */
const
Expand Down
4 changes: 4 additions & 0 deletions tracy-master/src/Tracy/assets/Bar/bar.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ body#tracy-debug { /* in popup window */
font-weight: bold;
}

#tracy-debug small {
font-size: smaller;
}

#tracy-debug i,
#tracy-debug em {
font-style: italic;
Expand Down
2 changes: 1 addition & 1 deletion tracy-master/src/Tracy/assets/Bar/bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
clearTimeout(elem.Tracy.displayTimeout);
if (this.rel === 'close') {
_this.toPeek();
} else {
} else if (this.rel === 'window') {
_this.toWindow();
}
e.preventDefault();
Expand Down

0 comments on commit 17b0c70

Please sign in to comment.