Bug 980786 - Shader Editor should be disabled when debugging chrome. r=vp

This commit is contained in:
Jordan Santell 2015-02-17 18:49:00 -05:00
parent 5702cfaf92
commit 0c44890c64

View File

@ -219,7 +219,7 @@ Tools.shaderEditor = {
tooltip: l10n("ToolboxShaderEditor.tooltip", shaderEditorStrings),
isTargetSupported: function(target) {
return target.hasActor("webgl");
return target.hasActor("webgl") && !target.chrome;
},
build: function(iframeWindow, toolbox) {