Bugfix: Lingering error in image generation from image gen. models
This commit is contained in:
@@ -749,7 +749,7 @@ It's better to admit "I need more information" or "I cannot do that" than to fak
|
||||
formSection {
|
||||
row("Icon Size") {
|
||||
HStack(spacing: 8) {
|
||||
Slider(value: $settingsService.toolbarIconSize, in: 16...32, step: 2)
|
||||
Slider(value: $settingsService.toolbarIconSize, in: 16...40, step: 2)
|
||||
.frame(maxWidth: 200)
|
||||
Text("\(Int(settingsService.toolbarIconSize)) pt")
|
||||
.font(.system(size: 13))
|
||||
@@ -1803,6 +1803,13 @@ It's better to admit "I need more information" or "I cannot do that" than to fak
|
||||
Toggle("", isOn: $settingsService.paperlessEnabled)
|
||||
.toggleStyle(.switch)
|
||||
}
|
||||
VStack(alignment: .leading, spacing: 2) {
|
||||
Text("⚠️ Beta — Paperless integration is under active development. Some features may be incomplete or behave unexpectedly.")
|
||||
.font(.caption)
|
||||
.foregroundStyle(.secondary)
|
||||
}
|
||||
.padding(.horizontal, 12)
|
||||
.padding(.bottom, 8)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2092,13 +2099,13 @@ It's better to admit "I need more information" or "I cannot do that" than to fak
|
||||
.foregroundStyle(selectedTab == tag ? .blue : .secondary)
|
||||
if beta {
|
||||
Text("β")
|
||||
.font(.system(size: 8, weight: .bold))
|
||||
.font(.system(size: 9, weight: .heavy))
|
||||
.foregroundStyle(.white)
|
||||
.padding(.horizontal, 3)
|
||||
.padding(.vertical, 1)
|
||||
.padding(.horizontal, 4)
|
||||
.padding(.vertical, 2)
|
||||
.background(Color.orange)
|
||||
.clipShape(Capsule())
|
||||
.offset(x: 6, y: -2)
|
||||
.offset(x: 8, y: -3)
|
||||
}
|
||||
}
|
||||
Text(label)
|
||||
|
||||
Reference in New Issue
Block a user