Why menu bar icons disappear behind the notch (and how macOS decides)

Why menu bar icons disappear behind the notch (and how macOS decides)

macOS never draws menu bar content in the notch region, so when the frontmost app's menus on the left and your status icons on the right need more width than the two strips beside the notch provide, macOS silently stops drawing whatever doesn't fit. There is no overflow arrow, no hidden tray, and no notification. The app is still running. Its icon is simply not being drawn, and the number of icons you lose changes depending on which app is frontmost.

Key takeaways

  • The menu bar has three competing claims on its width: the active app's menus on the left, status icons on the right, and the notch in the middle acting as a fixed wall.
  • macOS gives no indicator when it drops an icon, which is why people reasonably assume the app crashed or failed to launch.
  • Apps with many menu titles, such as Xcode, Logic, and Photoshop, push more status icons out of view while they are frontmost than apps with short menus do.
  • Command-dragging icons changes which ones survive a crowded bar but creates no additional space; only removing items or moving them to Control Center does that.
  • No public API lets a menu bar app detect that its own icon has been clipped, since NSStatusItem.isVisible returns true even when the icon is hidden behind the notch.

The actual rule macOS follows

Most explanations of this problem describe it as macOS dropping icons right to left. That's close enough to be useful and wrong enough to mislead, because it suggests the outcome depends only on how many status icons you're running. It doesn't.

The menu bar is a single strip divided by a hard obstacle. The Apple menu and the active app's menus claim the left side, status icons claim the right, and the notch sits in the middle as a wall macOS refuses to draw across. Those two zones compete for one shared pool of horizontal space. When the combined width exceeds what's available beside the notch, macOS resolves the conflict by dropping icons that don't fit, with no indicator at all.

This explains the behavior that otherwise looks random. An app with long menus can push half your icons out of existence while it is frontmost. Your icon count didn't change. The app menus on the other side of the notch grew, and the status icons lost the argument.

Why macOS gives you no warning

Other parts of macOS handle overflow gracefully. NSToolbar has shown an overflow chevron for years. The menu bar does not. When macOS runs out of room it does not show an overflow arrow, does not give you a hidden tray, and simply stops drawing items that do not fit, which is why the icon isn't missing so much as invisible.

Developers can't compensate for this either, and it's worth knowing that the app isn't at fault. There is no API for an app to tell whether its icon is hidden: NSStatusItem.isVisible reports whether the app or user wants the icon visible, and returns true even when the icon is hidden in the notch or behind a menu title. Every menu bar developer fields the same support emails as a result, from users convinced the app stopped working.

Worth stating plainly since it affects how you should think about the fix: this is a macOS design gap, not something the app you installed did wrong. The problem predates the notch and affects any Mac running enough status items, but more people encounter it now because the notch reduces menu bar capacity.

How to confirm it's overflow and not a crash

Before changing settings, spend ten seconds confirming the diagnosis, because the fix for a crashed app is different from the fix for a clipped icon.

  1. Note which icon is missing and confirm the app is still running, via the Dock, Activity Monitor, or Command-Tab.
  2. Switch from your current app to Finder, which has comparatively short menus.
  3. Watch the right side of the menu bar. If the missing icon reappears, you've confirmed a collision between app menus and status items.
  4. If the icon appears on an external display but not on the built-in screen, that also confirms available space is the constraint rather than an app setting.

This diagnostic is useful but not a workflow. Switching apps to reach a VPN toggle isn't a fix, it's evidence.

Four ways to reclaim menu bar space

These are ordered from least invasive to most, and the order matters: the first two are free, built into macOS, and solve the problem for most people without installing anything.

1. Move system icons into Control Center

This is the highest-yield fix and the most commonly skipped. Open System Settings → Control Center and set items you rarely click, Spotlight, Siri, Sound, Wi-Fi, Bluetooth, Battery, AirDrop, to show in Control Center rather than the menu bar. Each one you relocate frees width for a third-party icon that genuinely needs to stay visible.

The tradeoff is real: a Wi-Fi icon moved into Control Center is one click further away, and if you toggle Wi-Fi constantly, keep it. The question worth asking per icon is whether you look at it or click it. Items you only click belong in Control Center. Items you glance at, battery percentage, a clock, a live number, belong in the bar.

2. Reorder what survives

Hold Command and drag any menu bar icon left or right. Put the items you most rely on close to Control Center and the clock, where macOS is least likely to clip them.

Be clear about what this does and doesn't accomplish. Reordering does not create new space; it only decides which icons survive when the menu bar gets crowded. Treat it as setting priority, not as a fix on its own. Pair it with step one.

3. Reduce the number of running utilities

The least popular advice and the only one that actually creates capacity. A menu bar accumulates items the way a desktop accumulates files, and the audit worth running once a quarter is which icons you looked at in the past week. Anything you can't remember using is a candidate for quitting or disabling at login.

4. Install a menu bar manager

If you legitimately need more items than the bar can hold, a manager is the correct answer rather than a workaround. Ice, Bartender, and Hidden Bar each collect overflow into an expandable section so you can reach icons macOS would otherwise drop. Hidden Bar is free and extremely lightweight, providing a chevron to expand and collapse extra icons, with control over which are always shown.

Verify current details before choosing one, since pricing and feature sets in this category change. One thing worth knowing in advance: some managers rely on screen recording permissions to dynamically show and hide overflowed items, which triggers the macOS privacy indicator in the menu bar. That indicator appearing frequently is a documented annoyance with this approach. Setup for each is covered in our guide to using CoinNotch with Bartender and Ice.

Which fix to use, compared

Method Creates new space Requires an install Setup time Main tradeoff
Move icons to Control Center Yes No 2 min Relocated items take one extra click to reach
Command-drag to reorder No No 1 min Sets priority only; the bar's capacity is unchanged
Quit unused utilities Yes No 5 min You lose the functionality you removed
Menu bar manager No, but makes overflow reachable Yes 10 min Another app to maintain; some use screen recording permission
Use an external display Yes No n/a Only helps when docked; built-in screen is unchanged

What this means for a live ticker specifically

A price ticker is more exposed to this problem than a typical icon, for a reason worth understanding before you blame the app. A standard status icon occupies a fixed, narrow width. A ticker renders variable-width text, and a wider string, a longer price, an added percentage change, a second coin, consumes more of the contested space than a glyph does.

The practical consequence: a ticker configured to show three coins side by side is a much larger overflow risk than one showing a single number, and on a 13-inch Air the difference decides whether it survives when you open a menu-heavy app. CoinNotch offers cycle mode partly for this reason, rotating through a watchlist in one narrow slot rather than claiming width for each coin at once.

The honest limitation: CoinNotch cannot detect when macOS has clipped its own icon, because no public API reports that. If the ticker vanishes after you open Xcode, the app has no way to tell you why, and it isn't going to warn you. That's a platform gap rather than an oversight, and it applies equally to every menu bar app you run.

Frequently asked questions

Why do my menu bar icons disappear on a MacBook with a notch?

macOS never draws menu bar content in the notch region. When the active app's menus on the left plus your status icons on the right need more width than the strips beside the notch provide, macOS silently stops drawing the items that do not fit. The apps are still running.

Can I see which menu bar icons are currently hidden?

Not directly. macOS provides no overflow arrow, hidden tray, or indicator that icons were dropped. The reliable tell is that an app is running but its icon is gone, and quitting another app or switching to Finder makes it reappear.

Why do more icons vanish when I open Xcode or Photoshop?

Apps with many menu titles consume more of the left side of the menu bar while they are frontmost. That leaves less room for status icons on the right, so a menu-heavy app can push several icons out of view that were visible moments earlier under Finder.

Does reordering menu bar icons create more space?

No. Holding Command and dragging icons only changes which items survive when the bar runs out of room. It decides priority, not capacity. Creating actual space requires removing icons or moving system items into Control Center.

Is this problem caused by the notch itself?

The notch makes it far more common but did not create it. Menu bar overflow predates notched Macs and affects any Mac running enough status items. The notch reduces usable bar width, so the ceiling arrives sooner on a 14-inch or 16-inch MacBook Pro.

Can a menu bar app detect that its own icon is hidden?

No reliable API exists for this. NSStatusItem.isVisible reports whether the app or user wants the icon shown, and returns true even when the icon is clipped behind the notch, so developers cannot warn you that your icon has been dropped.

The setting worth checking after every macOS update

Menu bar behavior around the notch has shifted across releases, and macOS 26 Tahoe moved several relevant settings into a redesigned Control Center panel while changing how the bar renders. If icons started disappearing after an OS update rather than after installing something new, the cause is likely a change in the bar itself rather than in your app selection, and our guide to what Tahoe changed for menu bar apps covers what moved where. For the broader question of what deserves that space in the first place, see our guide to what the MacBook notch is actually for.

This article is for information only. It is not financial, investment, or tax advice. Crypto assets are volatile and you can lose everything you put in. CoinNotch displays public market data and does not trade, hold funds, or connect to any account.

פתוח 24 שעות ביממה

שתפו את המקום עם חברים:

אטרקציות נוספות שיכולות לעניין:

חברים בקבוצות שלנו?

הצטרפו לסיורים שלנו!

ותכירו את העיר מהעניים של המקומיים