Fix bottom clipping on message view (#1855)

This commit is contained in:
Ryan Nystrom
2018-06-03 16:57:45 -04:00
committed by GitHub
parent 1ac9348852
commit 0388cb9227
2 changed files with 2 additions and 2 deletions

View File

@@ -161,7 +161,7 @@ final class IssuesViewController:
textActionsController.configure(client: client, textView: messageView.textView, actions: actions)
textActionsController.viewController = self
actions.frame = CGRect(x: 0, y: 0, width: 0, height: 40)
actions.frame = CGRect(x: 0, y: 0, width: 0, height: 32)
messageView.add(contentView: actions)