mirror of
https://github.com/yattee/yattee.git
synced 2024-12-22 21:43:41 +00:00
Remove favorites drag opacity effect on iOS (fixes #43)
No workaround for how to handle drag and drop effect on opening context menu
This commit is contained in:
parent
984e9e7b16
commit
1fbb0cfa80
@ -49,7 +49,9 @@ struct FavoriteItemView: View {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.contentShape(Rectangle())
|
.contentShape(Rectangle())
|
||||||
|
#if os(macOS)
|
||||||
.opacity(dragging?.id == item.id ? 0.5 : 1)
|
.opacity(dragging?.id == item.id ? 0.5 : 1)
|
||||||
|
#endif
|
||||||
.onAppear {
|
.onAppear {
|
||||||
resource?.addObserver(store)
|
resource?.addObserver(store)
|
||||||
resource?.load()
|
resource?.load()
|
||||||
|
Loading…
Reference in New Issue
Block a user