Mastonaut icon indicating copy to clipboard operation
Mastonaut copied to clipboard

Toot menu, Copy shortcuts, … don't work for favorites/boosts, focused statuses, …

Open chucker opened this issue 2 years ago • 0 comments

validateMenuItem currently expects a StatusTableCellView:

		guard let selectedIndex = tableView.selectedRowIndexes.first,
			  let view = tableView.view(atColumn: 0, row: selectedIndex, makeIfNecessary: false),
			  let cellView = view as? StatusTableCellView,
			  let cellModel = cellView.cellModel
		else {
			return false
		}

chucker avatar May 01 '23 19:05 chucker