* src/nsmenu.m (update_frame_tool_bar): Ensure both sides of the test
are booleans.
* src/nsterm.m ([EmacsWindow createToolbar:]): Make the toolbar
non-visible initially, in case things get out of sync. Remove call to
update_frame_tool_bar: the window isn't yet associated with the view,
so it will return immediately.
#undef TOOLPROP
}
- if ([toolbar isVisible] != FRAME_EXTERNAL_TOOL_BAR (f))
+ if (![toolbar isVisible] != !FRAME_EXTERNAL_TOOL_BAR (f))
{
f->output_data.ns->in_animation = 1;
[toolbar setVisible: FRAME_EXTERNAL_TOOL_BAR (f)];
EmacsToolbar *toolbar = [[EmacsToolbar alloc]
initForView:view
withIdentifier:[NSString stringWithLispString:f->name]];
+ [toolbar setVisible:NO];
[self setToolbar:toolbar];
- update_frame_tool_bar (f);
-
#ifdef NS_IMPL_COCOA
{
NSButton *toggleButton;