mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 16:37:39 +02:00
Bottom right tooltip now matches hover tooltip if there is one
This commit is contained in:
@ -72,12 +72,14 @@ namespace RhythmHeavenMania
|
||||
public string propertyName;
|
||||
public object parameter;
|
||||
public string propertyCaption;
|
||||
public string tooltip;
|
||||
|
||||
public Param(string propertyName, object parameter, string propertyCaption)
|
||||
public Param(string propertyName, object parameter, string propertyCaption, string tooltip = "")
|
||||
{
|
||||
this.propertyName = propertyName;
|
||||
this.parameter = parameter;
|
||||
this.propertyCaption = propertyCaption;
|
||||
this.tooltip = tooltip;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user