Fix for "Recent macos build issues" (#598)

This commit is contained in:
ManoloFLTK 2022-12-16 08:06:41 +01:00
parent 44a2547394
commit 2ddb27f0f2
1 changed files with 2 additions and 1 deletions

View File

@ -574,7 +574,8 @@ static NSPopUpButton *createPopupAccessory(NSSavePanel *panel, const char *filte
NSView *view = [[[NSView alloc] initWithFrame:rectview] autorelease];
NSRect rectbox = NSMakeRect(0, 3, 140, 20 );
// the "Show hidden files" button
NSRect hidden_files_rect = {{150, (filter ? 35 : 0)}, {80, 30}};
NSRect hidden_files_rect = {{150, 0}, {80, 30}};
if (filter) hidden_files_rect.origin.y = 35;
NSButton *hidden_files = [[[NSButton alloc] initWithFrame:hidden_files_rect] autorelease];
[hidden_files setButtonType:
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_12