mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
Fixed delayed tooltips sometimes displaying in the wrong location for one frame
This commit is contained in:
parent
393bd9ffe5
commit
4854d420e0
2 changed files with 2 additions and 0 deletions
|
@ -72,6 +72,7 @@ Fixes
|
||||||
- Fixed dropdowns with some non-selectable children failing to navigate when using gamepad controls
|
- Fixed dropdowns with some non-selectable children failing to navigate when using gamepad controls
|
||||||
- Fixed UiMetrics.ForceAreaUpdateTime being inaccurate for nested elements
|
- Fixed UiMetrics.ForceAreaUpdateTime being inaccurate for nested elements
|
||||||
- Fixed tooltips sometimes ignoring manually set IsHidden values
|
- Fixed tooltips sometimes ignoring manually set IsHidden values
|
||||||
|
- Fixed delayed tooltips sometimes displaying in the wrong location for one frame
|
||||||
|
|
||||||
Removals
|
Removals
|
||||||
- Marked StyleProp equality members as obsolete
|
- Marked StyleProp equality members as obsolete
|
||||||
|
|
|
@ -79,6 +79,7 @@ namespace MLEM.Ui.Elements {
|
||||||
if (this.delayCountdown <= TimeSpan.Zero) {
|
if (this.delayCountdown <= TimeSpan.Zero) {
|
||||||
this.IsHidden = false;
|
this.IsHidden = false;
|
||||||
this.UpdateAutoHidden();
|
this.UpdateAutoHidden();
|
||||||
|
this.SnapPositionToMouse();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.UpdateAutoHidden();
|
this.UpdateAutoHidden();
|
||||||
|
|
Loading…
Reference in a new issue