惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
博客园 - 叶小钗
S
SegmentFault 最新的问题
雷峰网
雷峰网
H
Help Net Security
宝玉的分享
宝玉的分享
A
About on SuperTechFans
IT之家
IT之家
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(macos): normalize settings pane margins · openclaw/op...
steipete · 2026-05-18 · via Recent Commits to openclaw:main

File tree

  • apps/macos/Sources/OpenClaw

Original file line numberDiff line numberDiff line change

@@ -87,6 +87,7 @@ Docs: https://docs.openclaw.ai

8787

- UI: show reasoning choices as plain labels instead of leaking internal override wording in session and chat pickers.

8888

- Mac app: avoid repeating the Configuration heading inside channel quick settings.

8989

- Mac app: keep the Settings sidebar always visible and remove the redundant titlebar hide/show control.

90+

- Mac app: normalize Settings pane content margins so pages share the same left and right rail.

9091

- Mac app: prefer explicit private/Tailscale/LAN Gateway endpoints over SSH tunnels, preserve legacy loopback tunnel configs, persist transport choices, and show captured SSH stderr when tunneling really fails.

9192

- Gateway/sessions: keep ACP/acpx and runtime child sessions visible in configured-only session lists when their owner or parent session belongs to a configured agent.

9293

- Mac app: keep app-level menu commands and Dashboard failure states reachable when the remote Gateway is disconnected.

Original file line numberDiff line numberDiff line change

@@ -85,9 +85,7 @@ struct AboutSettings: View {

8585

Spacer()

8686

}

8787

.frame(maxWidth: .infinity, maxHeight: .infinity)

88-

.padding(.top, 4)

89-

.padding(.horizontal, 24)

90-

.padding(.bottom, 24)

88+

.settingsDetailContent()

9189

.onAppear {

9290

guard let updater, !self.didLoadUpdaterState else { return }

9391

// Keep Sparkle’s auto-check setting in sync with the persisted toggle.

Original file line numberDiff line numberDiff line change

@@ -8,6 +8,7 @@ extension ChannelsSettings {

88

self.detail

99

}

1010

.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)

11+

.settingsDetailContent()

1112

.onAppear {

1213

self.updateActiveWork(active: self.isActive)

1314

self.ensureSelection(in: channels)

@@ -72,8 +73,8 @@ extension ChannelsSettings {

7273

.font(.callout)

7374

.foregroundStyle(.secondary)

7475

}

75-

.padding(.horizontal, 24)

76-

.padding(.vertical, 18)

76+

.padding(.horizontal, SettingsLayout.detailHorizontalPadding)

77+

.padding(.vertical, SettingsLayout.detailVerticalPadding)

7778

}

7879
7980

private func channelDetail(_ channel: ChannelItem) -> some View {

@@ -85,8 +86,8 @@ extension ChannelsSettings {

8586

Spacer(minLength: 0)

8687

}

8788

.frame(maxWidth: .infinity, alignment: .leading)

88-

.padding(.horizontal, 24)

89-

.padding(.vertical, 18)

89+

.padding(.horizontal, SettingsLayout.detailHorizontalPadding)

90+

.padding(.vertical, SettingsLayout.detailVerticalPadding)

9091

}

9192

}

9293
Original file line numberDiff line numberDiff line change

@@ -19,6 +19,7 @@ struct ConfigSettings: View {

1919

self.detail

2020

}

2121

.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)

22+

.settingsDetailContent()

2223

.task {

2324

guard !self.hasLoaded else { return }

2425

guard !self.isPreview else { return }

@@ -117,8 +118,8 @@ extension ConfigSettings {

117118

.font(.callout)

118119

.foregroundStyle(.secondary)

119120

}

120-

.padding(.horizontal, 24)

121-

.padding(.vertical, 18)

121+

.padding(.horizontal, SettingsLayout.detailHorizontalPadding)

122+

.padding(.vertical, SettingsLayout.detailVerticalPadding)

122123

}

123124
124125

private var schemaUnavailableDetail: some View {

@@ -129,8 +130,8 @@ extension ConfigSettings {

129130

.foregroundStyle(.secondary)

130131

self.actionRow

131132

}

132-

.padding(.horizontal, 24)

133-

.padding(.vertical, 18)

133+

.padding(.horizontal, SettingsLayout.detailHorizontalPadding)

134+

.padding(.vertical, SettingsLayout.detailVerticalPadding)

134135

}

135136
136137

private func sectionDetail(_ section: ConfigSection) -> some View {

@@ -153,8 +154,8 @@ extension ConfigSettings {

153154

Spacer(minLength: 0)

154155

}

155156

.frame(maxWidth: .infinity, alignment: .leading)

156-

.padding(.horizontal, 24)

157-

.padding(.vertical, 18)

157+

.padding(.horizontal, SettingsLayout.detailHorizontalPadding)

158+

.padding(.vertical, SettingsLayout.detailVerticalPadding)

158159

.groupBoxStyle(PlainSettingsGroupBoxStyle())

159160

}

160161

}

Original file line numberDiff line numberDiff line change

@@ -9,8 +9,7 @@ extension CronSettings {

99

Spacer(minLength: 0)

1010

}

1111

.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)

12-

.padding(.leading, 18)

13-

.padding(.trailing, SettingsLayout.scrollbarGutter)

12+

.settingsDetailContent()

1413

.onAppear {

1514

self.updateActiveWork(active: self.isActive)

1615

}

Original file line numberDiff line numberDiff line change

@@ -62,9 +62,7 @@ struct DebugSettings: View {

6262
6363

Spacer(minLength: 0)

6464

}

65-

.frame(maxWidth: .infinity, alignment: .leading)

66-

.padding(.vertical, 4)

67-

.padding(.trailing, SettingsLayout.scrollbarGutter)

65+

.settingsDetailContent()

6866

.groupBoxStyle(PlainSettingsGroupBoxStyle())

6967

}

7068

.task {

Original file line numberDiff line numberDiff line change

@@ -46,10 +46,7 @@ struct GeneralSettings: View {

4646

self.connectionPage

4747

}

4848

}

49-

.frame(maxWidth: 760, alignment: .leading)

50-

.padding(.bottom, 16)

51-

.padding(.leading, 18)

52-

.padding(.trailing, SettingsLayout.scrollbarGutter)

49+

.settingsDetailContent()

5350

}

5451

.onAppear {

5552

self.updateActiveWork(active: self.isActive)

Original file line numberDiff line numberDiff line change

@@ -32,8 +32,7 @@ struct InstancesSettings: View {

3232

Spacer()

3333

}

3434

.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)

35-

.padding(.leading, 18)

36-

.padding(.trailing, SettingsLayout.scrollbarGutter)

35+

.settingsDetailContent()

3736

.onAppear { self.updateActiveWork(active: self.isActive) }

3837

.onChange(of: self.isActive) { _, active in

3938

self.updateActiveWork(active: active)

Original file line numberDiff line numberDiff line change

@@ -36,9 +36,7 @@ struct PermissionsSettings: View {

3636

}

3737

}

3838

}

39-

.frame(maxWidth: 760, alignment: .leading)

40-

.padding(.trailing, SettingsLayout.scrollbarGutter)

41-

.padding(.vertical, 4)

39+

.settingsDetailContent()

4240

}

4341

.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)

4442

}

Original file line numberDiff line numberDiff line change

@@ -24,8 +24,7 @@ struct SessionsSettings: View {

2424

Spacer()

2525

}

2626

.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)

27-

.padding(.leading, 18)

28-

.padding(.trailing, SettingsLayout.scrollbarGutter)

27+

.settingsDetailContent()

2928

.task {

3029

guard !self.hasLoaded else { return }

3130

guard !self.isPreview else { return }