Graffical Bug On Editor Zoom and Panel Maximization

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

On “cmd +” and “cmd -”, the shortcuts to enlarge or shrink the text of the editor, the entire UI seems to behave in a very strange way.

Also I noticed that whenever I maximize the panel (to view the full terminal output) the prompt drops below the statusbar. Disabling the statusbar makes the prompt drop below the window. I found a strange fix: pressing the spacebar returns the prompt to the correct position.

Finally on “togglePannel”, if the panel is maximized and the agent sidebar is hidden, the agent sidebar opens instead of the editor. Relocating the agent to a tab instead of the sidebar makes this behavior open a blank sidebar.

Steps to Reproduce

For the UI bug:
Press “cmd +” to zoom in or “cmd -” to zoom out.

For the terminal bug:
I’m using this keybinding:
{
“key”: “alt+j”,
“command”: “workbench.action.toggleMaximizedPanel”,
“when”: “panelFocus”
},

Using it maximizes the panel and the prompt drops.

For the third behaviour, using the same keybinding:

  • “cmd+j” to open the panel
  • “alt+j” to maximize the panel
  • “cmd+j” to clode the panel

Expected Behavior

  1. Normal UI scaling without weird spaces.
  2. Maximized panel that I can input commands into
  3. Maximized panel hiding and showing while the hidden agent side bar stays hidden

Screenshots / Screen Recordings

Operating System

MacOS

Version Information

Version: 2.5.17
VSCode Version: 1.105.1
Commit: 7b98dcb824ea96c9c62362a5e80dbf0d1aae4770
Date: 2026-02-17T05:58:33.110Z (3 days ago)
Build Type: Stable
Release Track: Default
Electron: 39.3.0
Chromium: 142.0.7444.265
Node.js: 22.21.1
V8: 14.2.231.22-electron.0
OS: Darwin arm64 25.3.0

Does this stop you from using Cursor

Sometimes - I can sometimes use Cursor

Hey, thanks for the report. I couldn’t reproduce it on my side, so it might be related to a specific extension or rendering settings.

Can you try a couple of things to narrow it down?

  1. Launch Cursor from the terminal with extensions disabled:

    cursor --disable-extensions
    

    Then try the zoom steps again cmd+/cmd- and toggleMaximizedPanel. If the issue goes away, it’s likely an extension conflict. You can re-enable extensions one by one to find the one causing it.

  2. If it still happens with extensions disabled, try turning off GPU acceleration:

    • Open the Command Palette Cmd+Shift+P > “Preferences: Open Runtime Arguments”
    • Add "disable-hardware-acceleration": true
    • Restart Cursor

Let me know what changes things. That’ll help confirm whether it’s on our side or caused by an extension interaction.

Tried both, none of them made a difference. all 3 described bugs are still present.

Also I checked GPU acceleration in user settings and I had them on default:
off for editor and auto for terminal

1 Like

Hi there!

I’ve been playing with the keybindings, the AI chat and some developer options and this is what I’ve been able to find out:

  • Apart from the togglePanel keybinding no other actions are being registred in the “Keyboard Shortcuts Troubleshooting” when I press “cmd+j“.
  • The most similar behavior to the bug is when I execute the “Toggle Editor Area Visibility“ but I couldn’t imitate it exactly.

So far, to be able to work, I made this keybinding that avoids running togglePanel when panel is maximized. The only drawback is that when I run it again, if the terminal was maximized, it is not restored to the previous state. In case someone needs it:

{
  "key": "cmd+j",
  "command": "workbench.action.togglePanel",
  "when": "!panelMaximized && !isAuxiliaryWindowFocusedContext"
},
{
  "key": "cmd+j",
  "command": "runCommands",
  "args": {
    "commands": [
      "workbench.action.toggleMaximizedPanel",
      "workbench.action.togglePanel"
    ]
  },
  "when": "panelMaximized && !isAuxiliaryWindowFocusedContext"
}

The rendering issues are still there too :frowning: . In case this might help:
when running toggleMaximizePanel the prompt falls under the status bar BUT if I press space the prompt moves and I can see it with the drawback that the panel now is over the tab bar (partly)

image
EDIT
This only happens with the titlebar disabled.