Skip to content

Commit

Permalink
increased tooltip autopopdelay in breedingplan to 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
cadaei committed Nov 5, 2020
1 parent 8653e03 commit 5fdef8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ARKBreedingStats/BreedingPlan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ public partial class BreedingPlan : UserControl
public readonly StatWeighting statWeighting;
public bool breedingPlanNeedsUpdate;
private bool _speciesInfoNeedsUpdate;
private Debouncer _breedingPlanDebouncer = new Debouncer();
private readonly Debouncer _breedingPlanDebouncer = new Debouncer();

/// <summary>
/// Set to false if settings are changed and update should only performed after that.
/// </summary>
private bool _updateBreedingPlanAllowed;
public CreatureCollection CreatureCollection;
private readonly ToolTip _tt = new ToolTip();
private readonly ToolTip _tt = new ToolTip() { AutoPopDelay = 10000 };

#region inheritance probabilities
public const double ProbabilityHigherLevel = 0.55; // probability of inheriting the higher level-stat
Expand Down

0 comments on commit 5fdef8b

Please sign in to comment.