10

When I move a window close to the top, it snaps to maximum size. I am using Ubuntu 18.04, GNOME 3.28.2.

How do I disable that? I searched about six months ago, no way to disable back then.

1/5/19 Yes, solved! Thank you!

  • These two worked on my Ubuntu 18.04

    1. gsettings set org.gnome.mutter edge-tiling false
    2. dconf-editor
  • These did not work

    1. GNOME Tweaks (disable "Edge Tiling" not available)
    2. gsettings set org.gnome.shell.overrides edge-tiling false

Thank you Kulfy, Hamza Saeed, vanadium, PRATAP.

3 Answers3

10

Command Line way:

by default the value for edge-tiling is set to true..

check the value with the below command gsettings get org.gnome.mutter edge-tiling

then set the value to false by below command gsettings set org.gnome.mutter edge-tiling false

Example:

$ gsettings get org.gnome.mutter edge-tiling
true
$ gsettings set org.gnome.mutter edge-tiling false
$

GUI way

Open dconf-editor, if not installed install it by below command sudo apt update && sudo apt install dconf-editor

search for "mutter" --> edge-tiling --> turn off the button.

enter image description here

3

To disable auto-resizing of the windows, open a terminal and run:

gsettings set org.gnome.shell.overrides edge-tiling false
Kulfy
  • 18,154
2

Install GNOME Tweaks from the Software Centre

Go to the Windows tab and disable Edge Tiling

Updated:

2nd option

Zanna
  • 72,312