mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
Fixed auto-nav tooltip displaying on the selected element even when not in auto-nav mode
This commit is contained in:
parent
62d2b28ec0
commit
902391d278
2 changed files with 5 additions and 1 deletions
|
@ -10,6 +10,10 @@ Jump to version:
|
|||
|
||||
## 5.4.0 (Unreleased)
|
||||
|
||||
### MLEM.Ui
|
||||
Fixes
|
||||
- Fixed auto-nav tooltip displaying on the selected element even when not in auto-nav mode
|
||||
|
||||
## 5.3.0
|
||||
### MLEM
|
||||
Additions
|
||||
|
|
|
@ -171,7 +171,7 @@ namespace MLEM.Ui.Elements {
|
|||
elementToHover.OnMouseEnter += e => this.Display(e.System, $"{e.GetType().Name}Tooltip");
|
||||
elementToHover.OnMouseExit += e => this.Remove();
|
||||
elementToHover.OnSelected += e => {
|
||||
if (this.DisplayInAutoNavMode) {
|
||||
if (this.DisplayInAutoNavMode && e.Controls.IsAutoNavMode) {
|
||||
this.snapElement = e;
|
||||
this.Display(e.System, $"{e.GetType().Name}Tooltip");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue