1
0
mirror of https://github.com/yattee/yattee.git synced 2025-04-28 07:50:33 +05:30

Fix refresh buttons opacity

This commit is contained in:
Arkadiusz Fal 2022-01-07 12:12:56 +01:00
parent c698595517
commit 3630cd404d
3 changed files with 3 additions and 0 deletions

View File

@ -127,6 +127,7 @@ struct TrendingView: View {
resource.load() resource.load()
} }
.keyboardShortcut("r") .keyboardShortcut("r")
.opacity(0)
) )
.navigationTitle("Trending") .navigationTitle("Trending")
#endif #endif

View File

@ -36,6 +36,7 @@ struct PopularView: View {
resource?.load() resource?.load()
} }
.keyboardShortcut("r") .keyboardShortcut("r")
.opacity(0)
) )
#endif #endif
#if os(iOS) #if os(iOS)

View File

@ -44,6 +44,7 @@ struct SubscriptionsView: View {
loadResources(force: true) loadResources(force: true)
} }
.keyboardShortcut("r") .keyboardShortcut("r")
.opacity(0)
) )
#endif #endif
#if os(iOS) #if os(iOS)