Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Nov 13, 2024
1 parent 4dfb2ed commit 03f9e20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/OneWare.Settings/SettingsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ public void RegisterTitledFilePath(string category, string subCategory, string k
public void RegisterTitledSlider(string category, string subCategory, string key, string title,
string description, double defaultValue, double min, double max, double step)
{
AddSetting(category, subCategory, key, new SliderSetting(title, description, defaultValue, min, max, step));
AddSetting(category, subCategory, key, new SliderSetting(title, defaultValue, min, max, step)
{
HoverDescription = description
});
}

public void RegisterTitledCombo<T>(string category, string subCategory, string key, string title,
Expand Down

0 comments on commit 03f9e20

Please sign in to comment.