Skip to content

Commit

Permalink
🔀 Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastiano Poggi <[email protected]>
  • Loading branch information
devkanro and rock3r authored Oct 20, 2023
1 parent 1ed461b commit ba0145e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ import org.jetbrains.jewel.painter.hints.HiDpi
interface PainterHintsProvider {

/**
* Those hints will be added before the [hints][PainterProvider.getPainter] that passed in [PainterProvider.getPainter].
* These hints will be consumed before the [hints] when [PainterProvider.getPainter] is called.
*/
@Composable
fun priorityHints(path: String): List<PainterHint> = emptyList()

/**
* Those hints will be added after the [hints][PainterProvider.getPainter] that passed in [PainterProvider.getPainter].
* These hints will be consumed after the [priorityHints] when [PainterProvider.getPainter] is called.
*/
@Composable
fun hints(path: String): List<PainterHint>
Expand Down

0 comments on commit ba0145e

Please sign in to comment.