From 185e8b51cf67fe5d78b06aca50cd61c8015e851a Mon Sep 17 00:00:00 2001 From: Neil Hodgson Date: Thu, 30 Mar 2017 07:36:36 +1100 Subject: Make autocompletion slightly wider to avoid text truncation. --- cocoa/PlatCocoa.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cocoa') diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index ca599b34d..dbf78c303 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -1692,6 +1692,7 @@ PRectangle ListBoxImpl::GetDesiredRect() rcDesired.bottom = rcDesired.top + static_cast(itemHeight * rows); rcDesired.right = rcDesired.left + maxItemWidth + aveCharWidth; + rcDesired.right += 4; // Ensures no truncation of text if (Length() > rows) { @@ -1704,7 +1705,7 @@ PRectangle ListBoxImpl::GetDesiredRect() [scroller setHasVerticalScroller:NO]; } rcDesired.right += maxIconWidth; - rcDesired.right += 6; + rcDesired.right += 6; // For icon space return rcDesired; } -- cgit v1.2.3