We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b302d5c commit a989717Copy full SHA for a989717
src/ui-scripts/tabs.js
@@ -378,7 +378,7 @@ var TabsBase = function()
378
{
379
return sum + tab.orig_width;
380
}, 0);
381
- scale = (orig_width_sum - delta) / orig_width_sum;
+ scale = Math.max(orig_width_sum - delta, 0) / orig_width_sum;
382
}
383
384
src/ui-style/tabs.css
@@ -237,7 +237,7 @@ top-tabs .badge:empty
237
238
.profiler_mode
239
240
- background: url("../ui-images/mode_profiler.png");
+ background-image: url("../ui-images/mode_profiler.png");
241
width: 25px;
242
243
0 commit comments