diff --git a/packages/stablestudio-plugin/src/Plugin.ts b/packages/stablestudio-plugin/src/Plugin.ts index f43c19f..b148a81 100644 --- a/packages/stablestudio-plugin/src/Plugin.ts +++ b/packages/stablestudio-plugin/src/Plugin.ts @@ -191,7 +191,7 @@ export type Plugin
= { StableDiffusionStyle[] | undefined >; - /** If you want to provide a list of resolutions in pixels to choose from, you can return them via this function and they will be presented as a dropdown in the UI */ + /** If you want to provide a list of resolutions in pixels to choose from, you can return them via this function and they will be presented as a slider in the UI */ getStableDiffusionAllowedResolutions?: ( model?: ID ) => { width: number; height: number }[] | undefined;