summaryrefslogtreecommitdiff
path: root/Util/VS2010/Dafny
diff options
context:
space:
mode:
authorGravatar rustanleino <unknown>2010-11-17 17:45:36 +0000
committerGravatar rustanleino <unknown>2010-11-17 17:45:36 +0000
commitfe84a26cd7367c359bda19f67940f51259a61c6e (patch)
treed642a65b51b688f0f199213c3d848d57fa39e9be /Util/VS2010/Dafny
parentf3cd67af3c2c7f99b8e75dd5660fc1c7a0b3114d (diff)
VSIP integration into VS: Changed idle delay to 300ms (from 1s). Distinguish warnings/errors in Chalice.
Diffstat (limited to 'Util/VS2010/Dafny')
-rw-r--r--Util/VS2010/Dafny/DafnyLanguageService/Integration/Package.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Util/VS2010/Dafny/DafnyLanguageService/Integration/Package.cs b/Util/VS2010/Dafny/DafnyLanguageService/Integration/Package.cs
index ae9c00c4..dc1244d6 100644
--- a/Util/VS2010/Dafny/DafnyLanguageService/Integration/Package.cs
+++ b/Util/VS2010/Dafny/DafnyLanguageService/Integration/Package.cs
@@ -32,7 +32,7 @@ namespace Demo
crinfo[0].grfcadvf = (uint)_OLECADVF.olecadvfModal |
(uint)_OLECADVF.olecadvfRedrawOff |
(uint)_OLECADVF.olecadvfWarningsOff;
- crinfo[0].uIdleTimeInterval = 1000;
+ crinfo[0].uIdleTimeInterval = 300;
int hr = mgr.FRegisterComponent(this, crinfo, out componentID);
}