Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion markdown/tutorial_look_and_feel_customisation.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ There are many functions in the [LookAndFeel](https://docs.juce.com/master/class

## Slider customisation

For example, take a look at the [Slider::LookAndFeelMethods](structSlider_1_1LookAndFeelMethods.html "This abstract base class is implemented by LookAndFeel classes to provide slider drawing functionalit...") within the JUCE API documentation. In this list you will notice a function named [Slider::LookAndFeelMethods::drawRotarySlider()](structSlider_1_1LookAndFeelMethods.html#ae63a9d8adce084cd5dbe02b960c73a9a).
For example, take a look at the [Slider::LookAndFeelMethods](https://docs.juce.com/master/structSlider_1_1LookAndFeelMethods.html "This abstract base class is implemented by LookAndFeel classes to provide slider drawing functionalit...") within the JUCE API documentation. In this list you will notice a function named [Slider::LookAndFeelMethods::drawRotarySlider()](https://docs.juce.com/master/structSlider_1_1LookAndFeelMethods.html#ae63a9d8adce084cd5dbe02b960c73a9a).

Let's override this in our `OtherLookAndFeel` class. Add the declaration to the class:

Expand Down