Skip to main content
Participating Frequently
March 12, 2026
Question

How to disable brush blend mode shortcuts

  • March 12, 2026
  • 1 reply
  • 51 views

I would like to disable the keyboard shortcuts for switching between brush blending mode. The current keyboard shortcuts are shift + - or shift + =. I have no use for switching my brush blending mode and I accidentally hit this shortcut frequently when switching brush flow to 100% and then I’m left wondering why my brush doesn’t work until I realize I’m on Divide or Dissolve blending mode.

I can’t find anywhere to change these keyboard shortcuts. Please help!

    1 reply

    Spas K.
    Community Expert
    Community Expert
    March 13, 2026

    It’s one of the hardcoded shortcuts which cannot be changed in Photoshop natively.

    The only solution would be to override it with other software that binds the said shortcut to a different action, so when you press it the blending mode change doesn’t happen, but something harmless runs instead.

    Software options vary by system, but on Windows there’s AutoHotkey.

    For example - you need to write a script that will activate when you press Shift and + or Shift and _, which will do a sequence of both commands, selecting the next blend mode, and immediately returning to the previous one, thus not making any actual change to it.

    The script for this looks like:

    +$+:: {
    Send '+{+}'
    Send '+{-}'
    }

    +$_:: {
    Send '+{-}'
    Send '+{+}'
    }
    return

    I’ve tested it and it works. 

    A potential issue is that when you’re typing and you want to actually type + or _, it will do the predefined action. In the example, it will type _+ or +_, which is not a bad tradeoff :)

    burbaladeAuthor
    Participating Frequently
    March 13, 2026

    I appreciate the reply. I’m on macOS so I’ll have to see if there’s a solution there. It’s too bad it can’t be changed in Photoshop!

    CM18
    Community Manager
    Community Manager
    April 3, 2026

    Hey! ​@burbalade

     

    Just wanted to check in and see if you were able to figure out this issue or still needed help. :) 

    Best, 
    CM