add tiling textures option
parent
018f7c2c5f
commit
ab5d0f3bad
|
|
@ -1072,6 +1072,16 @@ class SDTab extends React.Component<{}> {
|
|||
>
|
||||
Hi Res Fix
|
||||
</SpCheckBox>
|
||||
<SpCheckBox
|
||||
class="checkbox"
|
||||
id=""
|
||||
checked={store.data.tiling}
|
||||
onClick={(evt: any) => {
|
||||
store.data.tiling = evt.target.checked
|
||||
}}
|
||||
>
|
||||
tiling
|
||||
</SpCheckBox>
|
||||
</div>
|
||||
<div
|
||||
id="HiResDiv"
|
||||
|
|
|
|||
|
|
@ -135,6 +135,7 @@ export const store = new AStore({
|
|||
|
||||
selection_mode: selection_mode_config[0].value,
|
||||
inpainting_mask_weight: 1,
|
||||
tiling: false,
|
||||
})
|
||||
export const default_preset = {
|
||||
sd_tab_preset: {
|
||||
|
|
|
|||
|
|
@ -432,6 +432,7 @@ async function getSettings(session_data) {
|
|||
uniqueDocumentId: uniqueDocumentId,
|
||||
mode: mode,
|
||||
restore_faces: b_restore_faces,
|
||||
tiling: sd_tab_store.data.tiling,
|
||||
// script_args: script_args,
|
||||
// script_name:"Run on Stable Horde"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue