claude-code - 💡(How to fix) Fix [BUG] [Claude Desktop] Hamburger menu non-interactive before login on Windows — blocks third-party inference setup [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#52577Fetched 2026-04-24 06:03:26
View on GitHub
Comments
0
Participants
1
Timeline
4
Reactions
0
Participants
Timeline (top)
labeled ×4

Error Message

Error Messages/Logs

RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing issues and this hasn't been reported yet
  • This is a single bug report (please file separate reports for different bugs)
  • I am using the latest version of Claude Code

What's Wrong?

On Windows, the hamburger menu (top-left) in Claude Desktop is visible but completely unresponsive before logging in. This blocks the documented third-party inference setup flow, which instructs users to navigate to Help → Troubleshooting → Enable Developer mode → Developer → Configure third-party inference without logging in.

The same flow works correctly on macOS — the menu bar is fully interactive before login.

What Should Happen?

The hamburger menu should be interactive before login, allowing access to Help → Troubleshooting → Enable Developer mode, as described in the Cowork third-party setup documentation.

Error Messages/Logs

Steps to Reproduce

  1. Install Claude Desktop on Windows from claude.com/download
  2. Launch the app (do not log in)
  3. Click the hamburger menu (top-left corner)
  4. Menu does not open or respond to clicks

Claude Model

Not sure / Multiple models

Is this a regression?

I don't know

Last Working Version

No response

Claude Code Version

desktop app

Platform

Anthropic API

Operating System

Windows

Terminal/Shell

Other

Additional Information

No response

extent analysis

TL;DR

The hamburger menu in Claude Desktop on Windows should be made interactive before login to allow access to the necessary settings for third-party inference setup.

Guidance

  • Investigate platform-specific code differences between Windows and macOS to identify why the menu is unresponsive on Windows.
  • Verify that the issue is not related to the login state by checking if the menu becomes responsive after logging in.
  • Check the event listeners attached to the hamburger menu to ensure they are correctly bound and not prevented by any Windows-specific security or UI features.
  • Compare the CSS and layout properties of the menu on both platforms to rule out any styling issues that might be causing the problem.

Example

No specific code example can be provided without more details on the implementation, but checking event listeners might look something like this:

// Example of checking event listeners
const menu = document.getElementById('hamburger-menu');
const listeners = getEventListeners(menu);
console.log(listeners); // Inspect attached event listeners

Notes

The fix might involve adjusting the event handling or CSS for the Windows version of the application to match the behavior seen on macOS.

Recommendation

Apply a workaround by adjusting the Windows-specific code to make the hamburger menu interactive before login, as the root cause seems related to platform-specific differences.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING