Skip to content

Commit d9af242

Browse files
committed
fix: pop window title color fixed
1 parent 6fdad40 commit d9af242

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

macOS/APIExample/Examples/Advanced/VideoProcess/VideoProcess.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ extension VideoProcess {
711711
let label = NSTextField(labelWithString: makeupList[i]["name"] as? String ?? "none")
712712
label.translatesAutoresizingMaskIntoConstraints = false
713713
label.font = NSFont.systemFont(ofSize: 12)
714-
label.textColor = NSColor.white
714+
label.textColor = NSColor.black
715715
label.identifier = NSUserInterfaceItemIdentifier(rawValue: "\(i + 2000)")
716716

717717
// 创建水平堆栈视图
@@ -922,7 +922,7 @@ extension VideoProcess {
922922
let label = NSTextField(labelWithString: beautyShapeList[i]["name"] as? String ?? "none")
923923
label.translatesAutoresizingMaskIntoConstraints = false
924924
label.font = NSFont.systemFont(ofSize: 12)
925-
label.textColor = NSColor.white
925+
label.textColor = NSColor.black
926926
label.identifier = NSUserInterfaceItemIdentifier(rawValue: "\(i + 2000)")
927927

928928
// 创建水平堆栈视图

0 commit comments

Comments
 (0)