KEuVUe149Y7e320zVKJqOjpo0SGIHzz7ueew9qo8
Bookmark

How to Fix Shutter Edit Button Disabled in Ubuntu 18.04

Linuxslaves.com - There is this little issue with Shutter in Ubuntu 18.04. Yep, the Edit button is greyed out. This means the image the editing feature such as adding lines, cropping the image, blurring text don't work by the default.

So today I will show you an easy way to enable the Edit button in Shutter in Ubuntu 18.04 LTS Bionic Beaver.

What is Shutter?

Shutter is one of best screenshot app for Linux based operating systems such as Ubuntu. It's free, open-source, and licensed under GPL v3.

Suggested read :

You can take a screenshot of a specific area, window, your whole screen, apply different effects, draw on it to highlight points, and then upload to an image hosting site, all within one window.

Enable the Edit Button in Shutter

In previous Ubuntu version, you can install the libgoo-canvas-perl to fix the issue easily. Unfortunately, that package was removed from the Ubuntu repository.

But you can grab the package as well as dependencies from Ubuntu 17.10's repository.

Enable Edit Option In Shutter in Ubuntu 18.04

So, to enable the Shutter edit button which opens the Shutter Drawing Tool in Ubuntu 18.04 or/and any Linux distribution based on it, simply follow the instructions below :

sudo apt install gdebi


CLI (Faster Way)

Prefer for command line?. Run the following command on terminal window :

mkdir fixshutter && cd fixshutter
wget https://launchpad.net/ubuntu/+archive/primary/+files/libgoocanvas-common_1.0.0-1_all.deb https://launchpad.net/ubuntu/+archive/primary/+files/libgoocanvas3_1.0.0-1_amd64.deb https://launchpad.net/ubuntu/+archive/primary/+files/libgoo-canvas-perl_0.06-2ubuntu3_amd64.deb
sudo dpkg -i *.deb; sudo apt-get -f install

Explanation :
  • Line 1 : Create and enter the fixshutter directory
  • Line 2 : Get required packages from Launchpad
  • Line 3 : Install all deb packages and solve missing dependencies

Once the debs are installed, kill Shutter and re-open it to apply the changes.

sudo killall shutter

Now the edit button in Shutter should work. That's it folks!.