IDEA-172772 Action "Resume program" is not available when IDEA is updating indexes

This commit is contained in:
Egor.Ushakov
2017-05-17 20:00:59 +03:00
parent 7189297a08
commit b87c41269a
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2016 JetBrains s.r.o.
* Copyright 2000-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -108,6 +108,6 @@ public abstract class XDebuggerActionBase extends AnAction implements AnAction.T
@Override
public boolean isDumbAware() {
return Registry.is("dumb.aware.run.configurations");
return super.isDumbAware() || Registry.is("dumb.aware.run.configurations");
}
}