"Restore", which is found in the Windows section in Settings - Keyboard shortcuts, is not only assigned to Super+Down, but also to the "traditional" shortcut Alt+F5. You can disable the binding to Alt+F5 and retain the Super+Down binding:
- Go to "Settings" - "Keyboard"
- Click "View and customize shortcuts" in the right pane
- Under the section "Windows", click "Restore window".
- The "Set shortcut" dialog appears.
- Press Super+Down: this will set that key only.
Alternatively, use gsettings in the terminal:
gsettings set org.gnome.desktop.wm.keybindings unmaximize "['<Super>Down']"
That removes the assignment to Alt+F5, but maintains Super+Down for unmaximizing a window. Reset to the default (['<Super>Down', '<Alt>F5']) with the command
gsettings reset org.gnome.desktop.wm.keybindings unmaximize
You can edit this and many other "hidden" settings using dconf-editor, not installed by default.
gsettings get org.gnome.desktop.wm.keybindings unmaximize, it shows:['<Super>Down', '<Alt>F5']. I think we can unbind Alt+F5, then, by simply going in and setting it to Super+Down (which seemingly would do nothing but should clear out Alt+F5). – Steven Lu Apr 17 '21 at 00:33gsettings set org.gnome.desktop.wm.keybindings unmaximize "[]"to remove binding – Vladislav Jul 07 '21 at 12:31