Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
add slider setting
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Mar 8, 2024
1 parent 5a06450 commit 958617c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/OneWare.Essentials/Services/ISettingsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ public void RegisterTitled<T>(string category, string subCategory, string key, s
public void RegisterTitledPath(string category, string subCategory, string key, string title, string description,
string defaultValue, string? watermark, string? startDir, Func<string, bool>? validate);

public void RegisterTitledSlider(string category, string subCategory, string key, string title, string description, int defaultValue, int min, int max, int step);

public void RegisterTitledCombo<T>(string category, string subCategory, string key, string title, string description,
T defaultValue, params T[] options);

Expand Down

0 comments on commit 958617c

Please sign in to comment.