mirror of
https://github.com/jlengrand/5GUIs-1.git
synced 2026-03-10 08:01:25 +00:00
Limit height of details popover
...
This commit is contained in:
@@ -40,7 +40,8 @@ struct MainFileView: View {
|
|||||||
ScrollView {
|
ScrollView {
|
||||||
DetailsPopover(info: state.info)
|
DetailsPopover(info: state.info)
|
||||||
}
|
}
|
||||||
.frame(minWidth: 480, maxWidth: .infinity, minHeight: 320)
|
.frame(minWidth: 480, maxWidth: .infinity,
|
||||||
|
minHeight: 320, maxHeight: 840)
|
||||||
}
|
}
|
||||||
.padding(.top)
|
.padding(.top)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
|
|||||||
Reference in New Issue
Block a user