Skip to content

Commit

Permalink
bar: fixed z-index issue when some panels are already in FLOAT mode w…
Browse files Browse the repository at this point in the history
…hen the page is loaded. [Closes #269]
  • Loading branch information
dg committed Feb 22, 2018
1 parent 5e01a7e commit bee67cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Tracy/assets/Bar/bar.css
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ body#tracy-debug { /* in popup window */
background: white;
color: #333;
text-align: left;
z-index: 20001;
z-index: 20000;
}

body#tracy-debug .tracy-panel { /* in popup window */
Expand Down
2 changes: 1 addition & 1 deletion src/Tracy/assets/Bar/bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
Panel.FLOAT = 'tracy-mode-float';
Panel.WINDOW = 'tracy-mode-window';
Panel.FOCUSED = 'tracy-focused';
Panel.zIndex = 20000;
Panel.zIndex = 20001;

Panel.prototype.init = function() {
var _this = this, elem = this.elem;
Expand Down

0 comments on commit bee67cb

Please sign in to comment.