Skip to content

Commit

Permalink
截屏 隐藏超级截屏
Browse files Browse the repository at this point in the history
  • Loading branch information
xushengfeng committed Sep 11, 2024
1 parent 648c3c3 commit d5dc308
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/renderer/clip/clip_window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2782,7 +2782,9 @@ const toolBarEl = frame("tool", {
ding: iconEl(ding_svg),
record: {
_: iconEl(record_svg),
recordm: selectMenu<"normal" | "super">().class("side_select"),
recordm: selectMenu<"normal" | "super">()
.class("side_select")
.data({ dev: "" }),
},
long: {
_: iconEl(long_clip_svg),
Expand Down Expand Up @@ -2832,7 +2834,7 @@ toolBarEl.els.longm.on("change", () => {
});

toolBarEl.els.recordm.add([
ele("option").attr({ innerText: "normal", value: "traditional" }),
ele("option").attr({ innerText: "normal", value: "normal" }),
ele("option").attr({ innerText: "super", value: "super" }),
]);
toolBarEl.els.recordm.on("change", () => {
Expand Down

0 comments on commit d5dc308

Please sign in to comment.