We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9315df9 commit 90d114dCopy full SHA for 90d114d
Adamant/Modules/Chat/View/Subviews/ChatMedia/Container/ChatMediaContainerView.swift
@@ -184,7 +184,12 @@ extension ChatMediaContainerView {
184
185
reactionsStack.insertSubview(progressRingHostingView, aboveSubview: statusButton)
186
progressRingHostingView.snp.makeConstraints { make in
187
- make.center.equalTo(statusButton)
+ if isMacOS {
188
+ make.centerX.equalTo(statusButton).offset(-1)
189
+ } else {
190
+ make.centerX.equalTo(statusButton)
191
+ }
192
+ make.centerY.equalTo(statusButton)
193
make.size.equalTo(29)
194
}
195
0 commit comments