Index: Source/devtools/front_end/sources/SourcesPanel.js |
diff --git a/Source/devtools/front_end/sources/SourcesPanel.js b/Source/devtools/front_end/sources/SourcesPanel.js |
index c1a70375100e24a417cfc9c9a11a2200b8900f4d..ccbaa3a1ee8f0c5f8955142eae6c568adab35a67 100644 |
--- a/Source/devtools/front_end/sources/SourcesPanel.js |
+++ b/Source/devtools/front_end/sources/SourcesPanel.js |
@@ -676,7 +676,9 @@ WebInspector.SourcesPanel.prototype = { |
var executionContext = WebInspector.context.flavor(WebInspector.ExecutionContext); |
if (!executionContext) |
return; |
- var rawLocation = WebInspector.debuggerWorkspaceBinding.uiLocationToRawLocation(executionContext.target(), uiLocation.uiSourceCode, uiLocation.lineNumber, uiLocation.columnNumber); |
+ |
+ // Always use 0 column. |
+ var rawLocation = WebInspector.debuggerWorkspaceBinding.uiLocationToRawLocation(executionContext.target(), uiLocation.uiSourceCode, uiLocation.lineNumber, 0); |
if (!rawLocation) |
return; |