aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nsterm.m5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index e69aa43dd37..633ca3bf76b 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -6560,7 +6560,10 @@ not_in_argv (NSString *arg)
6560 6560
6561 if (wait_for_tool_bar) 6561 if (wait_for_tool_bar)
6562 { 6562 {
6563 if (FRAME_TOOLBAR_HEIGHT (emacsframe) == 0) 6563 /* The toolbar height is always 0 in fullscreen, so don't wait
6564 for it to become available. */
6565 if (FRAME_TOOLBAR_HEIGHT (emacsframe) == 0
6566 && ! [self isFullscreen])
6564 { 6567 {
6565 NSTRACE_MSG ("Waiting for toolbar"); 6568 NSTRACE_MSG ("Waiting for toolbar");
6566 return; 6569 return;