Removes rename
This commit is contained in:
parent
0e2b8fd514
commit
5a7c3111ce
|
@ -85,13 +85,6 @@ struct SidebarContextMenu: View {
|
|||
}
|
||||
Divider()
|
||||
Button {
|
||||
} label: {
|
||||
Text("Rename")
|
||||
#if os(iOS)
|
||||
AppAssets.renameImage
|
||||
#endif
|
||||
}
|
||||
Button {
|
||||
} label: {
|
||||
Text("Delete")
|
||||
#if os(iOS)
|
||||
|
@ -101,6 +94,14 @@ struct SidebarContextMenu: View {
|
|||
}
|
||||
|
||||
if sidebarItem.representedType == .folder {
|
||||
Button {
|
||||
showInspector = true
|
||||
} label: {
|
||||
Text("Get Info")
|
||||
#if os(iOS)
|
||||
AppAssets.getInfoImage
|
||||
#endif
|
||||
}
|
||||
Button {
|
||||
} label: {
|
||||
Text("Mark All As Read")
|
||||
|
@ -109,14 +110,6 @@ struct SidebarContextMenu: View {
|
|||
#endif
|
||||
}
|
||||
Divider()
|
||||
Button {
|
||||
showInspector = true
|
||||
} label: {
|
||||
Text("Rename")
|
||||
#if os(iOS)
|
||||
AppAssets.renameImage
|
||||
#endif
|
||||
}
|
||||
Button {
|
||||
} label: {
|
||||
Text("Delete")
|
||||
|
|
Loading…
Reference in New Issue