From 0d55a99dd599d9e4ea9e0c101e4ac1ec9975992d Mon Sep 17 00:00:00 2001 From: kaj <40004347+KAJdev@users.noreply.github.com> Date: Tue, 19 Sep 2023 13:20:53 -0800 Subject: [PATCH] fix: comment --- packages/stablestudio-plugin/src/Plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;