mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
weaker condition for testing if the file belongs to run-config scope
This commit is contained in:
@@ -176,7 +176,7 @@ public class LineBreakpoint extends BreakpointWithHighlighter {
|
||||
if (position != null) {
|
||||
final GlobalSearchScope scope = debugProcess.getSearchScope();
|
||||
final VirtualFile file = position.getFile().getVirtualFile();
|
||||
if (file != null && ProjectRootManager.getInstance(debugProcess.getProject()).getFileIndex().isInContent(file)) {
|
||||
if (file != null && ProjectRootManager.getInstance(debugProcess.getProject()).getFileIndex().isInSourceContent(file)) {
|
||||
return scope.accept(file);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user