Skip to content

Commit 79e5c23

Browse files
committed
some fix
1 parent c540ae1 commit 79e5c23

4 files changed

Lines changed: 14 additions & 13 deletions

File tree

javascript/sdppp-comfy.js

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/sd-ppp_PS.ccx

0 Bytes
Binary file not shown.

typescripts/modules/comfy/src/popup/ComfyPopup.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@
192192
}
193193

194194
.sdppp-side-icon {
195-
width: 64px;
196-
height: 64px;
195+
width: 48px;
196+
height: 48px;
197197
mask-image: url("./sd-ppp-static/sdppp-icon.svg");
198-
mask-size: 36px;
198+
mask-size: 27px;
199199
mask-position: center;
200200
mask-repeat: no-repeat;
201201
background-color: currentColor;
@@ -249,4 +249,4 @@
249249
.sdppp-side-container .group-filter-item:not(:first-child) {
250250
margin-left: 8px;
251251
}
252-
/* end of GroupFilter component styles */
252+
/* end of GroupFilter component styles */

typescripts/modules/comfy/src/popup/tsx/Settings.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import { Checkbox } from "antd";
12
import React, { useState } from "react";
2-
import { pageStore } from "../../../photoshopModels.mts";
33
import i18n from "../../../../../src/common/i18n.mts";
4+
import { pageStore } from "../../../photoshopModels.mts";
45
import { api } from "../../comfy-globals.mts";
5-
import { Checkbox } from "antd";
66

77
const Settings: React.FC = () => {
88
const [useSliderForNumberWidget, setUseSliderForNumberWidget] = useState(pageStore.data.useSliderForNumberWidget);
@@ -38,7 +38,7 @@ const Settings: React.FC = () => {
3838
</div>
3939
<div className="settings-section settings-row">
4040
<div className="settings-label">
41-
<label>{i18n("Photoshop plugin")} 2.0 Beta(CHN only)</label>
41+
<label>{i18n("Photoshop plugin")} 2.0 Beta</label>
4242
</div>
4343
<div className="settings-control">
4444
<button onClick={handleDownloadPlugin2} className="download-button">
@@ -67,4 +67,4 @@ const Settings: React.FC = () => {
6767
);
6868
};
6969

70-
export default Settings;
70+
export default Settings;

0 commit comments

Comments
 (0)