From f252a2a6a85187de5112afffbfab4dd67b00b5ab Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Wed, 20 Mar 2019 16:44:05 +0100 Subject: [PATCH] Pinned width of index column to prevent column from being too large or small --- MacPass/MPEntryViewController.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MacPass/MPEntryViewController.m b/MacPass/MPEntryViewController.m index ef2abf91..531d910d 100644 --- a/MacPass/MPEntryViewController.m +++ b/MacPass/MPEntryViewController.m @@ -153,7 +153,8 @@ NSString *const _MPTableSecurCellView = @"PasswordCell"; attachmentsColumn.minWidth = 40.0; modifiedColumn.minWidth = 40.0; historyColumn.minWidth = 40.0; - indexColumn.minWidth = 16.0; + indexColumn.minWidth = 27.0; + indexColumn.maxWidth = 27.0; [self.entryTable addTableColumn:notesColumn]; [self.entryTable addTableColumn:attachmentsColumn]; [self.entryTable addTableColumn:modifiedColumn];