Skip to content

Commit 7800bdf

Browse files
author
SlavaRa
committed
Merge branch 'master' into develop
2 parents d7561bf + 00063c7 commit 7800bdf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

QuickNavigate/Forms/TypeExplorerForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ protected override void OnShown(EventArgs e)
338338
if (Settings.TypeExplorerSize.Width > MinimumSize.Width) Size = Settings.TypeExplorerSize;
339339
searchingInExternalClasspaths.Checked = Settings.TypeExplorerSearchExternalClassPath;
340340
}
341-
timer.Interval = PluginBase.MainForm.Settings.DisplayDelay;
341+
timer.Interval = Math.Max(PluginBase.MainForm.Settings.DisplayDelay, 100);
342342
timer.Tick += OnTimerTick;
343343
timer.Start();
344344
}

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
os: Visual Studio 2015
22
environment:
3+
ID: quicknavigate
34
PLUGIN_VERSION: 2.8
45
PLUGIN_NAME: QuickNavigate
56
PLUGIN_DESC: Quickly navigate through Types, Fields, Projects and more
@@ -37,7 +38,7 @@ after_build:
3738
- set /p CHECKSUM=<checksum.md5
3839
- rm checksum.md5
3940
- mv %APPMAN_TEMPLATE% %APPMAN_CONFIG_XML%
40-
- sed -i -e s/_ID_/quicknavigate/g %APPMAN_CONFIG_XML%
41+
- sed -i -e "s/_ID_/%ID%/g" %APPMAN_CONFIG_XML%
4142
- sed -i -e "s/_NAME_/%PLUGIN_NAME%/g" %APPMAN_CONFIG_XML%
4243
- sed -i -e "s/_DESC_/%PLUGIN_DESC%/g" %APPMAN_CONFIG_XML%
4344
- sed -i -e "s/_VERSION_/%PLUGIN_VERSION%/g" %APPMAN_CONFIG_XML%

0 commit comments

Comments
 (0)