提交 696cfa85 编写于 作者: B Benjamin Pasero

Sidebar is not clickable after changing Date & Time (fixes #25830)

上级 dc390816
......@@ -84,7 +84,7 @@ export class ViewletActivityAction extends ActivityAction {
// prevent accident trigger on a doubleclick (to help nervous people)
const now = Date.now();
if (now - this.lastRun < ViewletActivityAction.preventDoubleClickDelay) {
if (now > this.lastRun /* https://github.com/Microsoft/vscode/issues/25830 */ && now - this.lastRun < ViewletActivityAction.preventDoubleClickDelay) {
return TPromise.as(true);
}
this.lastRun = now;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册