Fix showing extra controls in wxFileDialog under macOS These controls were not shown due to a forgotten colon in the test for setAccessoryViewDisclosed support added in e765756555 (OSX file dialog extensions (#2592), 2021-11-26). Fix this simply by adding the colon, which is part of the method name. Closes #25717.
... | ... | @@ -513,7 +513,7 @@ void wxFileDialog::SetupExtraControls(WXWindow nativeWindow) |
513 | 513 | [panel setAccessoryView:accView];
|
514 | 514 | |
515 | 515 | wxCLANG_WARNING_SUPPRESS(undeclared-selector)
|
516 | - if ([panel respondsToSelector:@selector(setAccessoryViewDisclosed)])
|
|
516 | + if ([panel respondsToSelector:@selector(setAccessoryViewDisclosed:)])
|
|
517 | 517 | {
|
518 | 518 | [(id)panel setAccessoryViewDisclosed:YES];
|
519 | 519 | }
|
—
View it on GitLab.
You're receiving this email because of your account on gitlab.com. Manage all notifications · Help