From: Daniel Martín Date: Sat, 18 Mar 2023 00:47:32 +0000 (+0100) Subject: Fix toolbar item validation in the NS port X-Git-Tag: emacs-29.0.90~108 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f0a2f37deec868751542f5b67fc9e545570172ae;p=emacs.git Fix toolbar item validation in the NS port * src/nsterm.m ([EmacsView validateToolbarItem:]): Implement this NSToolbarItemValidation method, which is called by AppKit when it needs to validate an image item in a toolbar. This solves, in particular, the problem with having the "Save" icon on the tool bar enabled at Emacs startup. (Bug#62234) --- diff --git a/src/nsterm.m b/src/nsterm.m index 4180cdc9e7f..c9f955000ac 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -8581,6 +8581,10 @@ ns_in_echo_area (void) return self; } +- (BOOL) validateToolbarItem: (NSToolbarItem *) toolbarItem +{ + return [toolbarItem isEnabled]; +} - (instancetype)toggleToolbar: (id)sender {