Skip to content

Commit

Permalink
Merged release/tip into master
Browse files Browse the repository at this point in the history
  • Loading branch information
slavara committed Jul 28, 2016
2 parents f77a0cb + a183474 commit a16c2ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions QuickNavigate/Forms/ClassHierarchyForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ protected override void OnShown(EventArgs e)
{
base.OnShown(e);
if (Settings != null && Settings.HierarchyExplorerSize.Width > MinimumSize.Width) Size = Settings.HierarchyExplorerSize;
CenterToParent();
}

protected override void OnFormClosing(FormClosingEventArgs e)
Expand Down
1 change: 1 addition & 0 deletions QuickNavigate/Forms/QuickOutlineForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ protected override void OnShown(EventArgs e)
{
base.OnShown(e);
if (Settings != null && Settings.QuickOutlineSize.Width > MinimumSize.Width) Size = Settings.QuickOutlineSize;
CenterToParent();
}

protected override void OnKeyDown(KeyEventArgs e)
Expand Down
1 change: 1 addition & 0 deletions QuickNavigate/Forms/TypeExplorerForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ protected override void OnShown(EventArgs e)
if (Settings.TypeExplorerSize.Width > MinimumSize.Width) Size = Settings.TypeExplorerSize;
searchingInExternalClasspaths.Checked = Settings.TypeExplorerSearchExternalClassPath;
}
CenterToParent();
timer.Interval = Math.Max(PluginBase.MainForm.Settings.DisplayDelay, 100);
timer.Tick += OnTimerTick;
timer.Start();
Expand Down

0 comments on commit a16c2ea

Please sign in to comment.