summaryrefslogtreecommitdiff
path: root/Util
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
commit0957f35791399640d69e85a9b5165dfd96d05279 (patch)
tree3c3251d7a4e4bad8205db417d94e8fdf79c5020e /Util
parentf52f2d44cc9ffb14d23ce71f904f8ef07330f075 (diff)
VSIP integration into VS: Changed idle delay to 300ms (from 1s). Distinguish warnings/errors in Chalice.
Diffstat (limited to 'Util')
-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);
}