disable emulation only for base native methods

This commit is contained in:
Egor.Ushakov
2016-11-08 18:04:15 +03:00
parent c502fb7fef
commit 211e8a7393
@@ -179,7 +179,7 @@ public class MethodBreakpoint extends BreakpointWithHighlighter<JavaMethodBreakp
}
}
if (method != null) {
if (method.isNative()) {
if (base && method.isNative()) {
ApplicationManager.getApplication().invokeLater(() -> {
getProperties().EMULATED = false;
fireBreakpointChanged();