Skip to content

Commit 17b0c70

Browse files
committed
Fix recently introduced bug when using Console small/large buttons.
1 parent b47b427 commit 17b0c70

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

TracyDebugger.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.9.23',
35+
'version' => '4.9.24',
3636
'autoload' => true,
3737
'singular' => true,
3838
'requires' => 'ProcessWire>=2.7.2, PHP>=5.4.4',

tracy-master/src/Tracy/Debugger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
class Debugger
1717
{
18-
const VERSION = '2.4.11';
18+
const VERSION = '2.4.12';
1919

2020
/** server modes for Debugger::enable() */
2121
const

tracy-master/src/Tracy/assets/Bar/bar.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ body#tracy-debug { /* in popup window */
5252
font-weight: bold;
5353
}
5454

55+
#tracy-debug small {
56+
font-size: smaller;
57+
}
58+
5559
#tracy-debug i,
5660
#tracy-debug em {
5761
font-style: italic;

tracy-master/src/Tracy/assets/Bar/bar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
clearTimeout(elem.Tracy.displayTimeout);
8484
if (this.rel === 'close') {
8585
_this.toPeek();
86-
} else {
86+
} else if (this.rel === 'window') {
8787
_this.toWindow();
8888
}
8989
e.preventDefault();

0 commit comments

Comments
 (0)