bug: fix pen dock ui blockage to canvas

This commit is contained in:
dscyrescotti
2024-06-24 21:32:45 +07:00
parent 36904f2879
commit 9c8763f0e5

View File

@@ -51,7 +51,6 @@ struct PenDock: View {
} }
} }
.padding(.vertical, 10) .padding(.vertical, 10)
.padding(.leading, 40)
.id(refreshScrollId) .id(refreshScrollId)
} }
.onReceive(tool.scrollPublisher) { id in .onReceive(tool.scrollPublisher) { id in
@@ -62,7 +61,7 @@ struct PenDock: View {
} }
} }
} }
.frame(maxHeight:( (height * factor + 10) * 6) + 20) .frame(maxHeight: ((height * factor + 10) * 6) + 20)
.fixedSize() .fixedSize()
.background(alignment: .trailing) { .background(alignment: .trailing) {
RoundedRectangle(cornerRadius: 8) RoundedRectangle(cornerRadius: 8)
@@ -72,7 +71,7 @@ struct PenDock: View {
.clipShape(.rect(cornerRadii: .init(bottomTrailing: 8, topTrailing: 8))) .clipShape(.rect(cornerRadii: .init(bottomTrailing: 8, topTrailing: 8)))
.overlay(alignment: .bottomLeading) { .overlay(alignment: .bottomLeading) {
newPenButton newPenButton
.offset(x: 60, y: 10) .offset(x: 15, y: 10)
} }
} }