提交 faacb164 编写于 作者: D Daniel Imms

Merge remote-tracking branch 'origin/master' into tyriar/snap

......@@ -59,7 +59,7 @@ import { touch } from 'vs/base/node/pfs';
export class CodeApplication {
private static APP_ICON_REFRESH_KEY = 'macOSAppIconRefresh';
private static APP_ICON_REFRESH_KEY = 'macOSAppIconRefresh2';
private toDispose: IDisposable[];
private windowsMainService: IWindowsMainService;
......
......@@ -246,7 +246,7 @@ export class DebugService implements debug.IDebugService {
private tryToAutoFocusStackFrame(thread: debug.IThread): TPromise<any> {
const callStack = thread.getCallStack();
if (!callStack.length || (this.viewModel.focusedStackFrame && this.viewModel.focusedStackFrame.thread.threadId === thread.threadId)) {
if (!callStack.length || (this.viewModel.focusedStackFrame && this.viewModel.focusedStackFrame.thread.getId() === thread.getId())) {
return TPromise.as(null);
}
......
......@@ -198,8 +198,8 @@ export class RemoteFileService extends FileService {
result[idx] = { stat: undefined, success: false };
});
});
return TPromise.join(promises).then(() => result, () => result);
}, err => ([{ stat: undefined, success: false }]));
return TPromise.join(promises).then(() => result);
});
}
// --- resolve
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册