Skip to content

Commit 3ca4a3a

Browse files
austincondiffFastestMolasses
authored andcommitted
Fixed History Inspector popover UI bug (#2041)
1 parent e464603 commit 3ca4a3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CodeEdit/Features/InspectorArea/HistoryInspector/HistoryPopoverView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@ struct HistoryPopoverView: View {
1818
var body: some View {
1919
VStack {
2020
CommitDetailsHeaderView(commit: commit)
21-
.padding(.horizontal)
2221

2322
Divider()
24-
.padding(.horizontal)
2523

2624
VStack(alignment: .leading, spacing: 0) {
2725
// TODO: Implementation Needed
@@ -71,6 +69,8 @@ struct HistoryPopoverView: View {
7169
}, icon: {
7270
Image(systemName: image)
7371
.frame(width: 16, alignment: .center)
72+
.padding(.leading, -2.5)
73+
.padding(.trailing, 2.5)
7474
})
7575
.frame(maxWidth: .infinity, alignment: .leading)
7676
.foregroundColor(isHovering && isEnabled ? .white : .primary)

0 commit comments

Comments
 (0)