PropertyTooltips sometimes don't show up on inspectors that draw lots of things

Issue #159 resolved
Stella Delonge created an issue

Odin version: 1.0.4.1, Unity version: 5.4.4f1, OS: Win10

How to reproduce: Attatch the following as a script to a game object (And make sure the list size is actually large e.g. 2000 and the list is expanded). The tooltip "Hello!" will only appear sporadically or may not even show at all.

using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class testPropertyTooltip: MonoBehaviour{


    [Sirenix.OdinInspector.PropertyTooltip("Hello!")]
    public GameObject shouldShowTooltip;

    public List<bool> largeList = new List<int>(2000);

}

Comments (2)

  1. Log in to comment