The merge/diff tool Meld is missing preferences option (Edit -> preferences) on Ubuntu 18.10. Is this an general issue or specific to my Ubuntu installation? How can it fixed?
Update for anyone facing the same issue: Seems like a Gnome-Shell feature. Click on the small Down Arrow next to the "Meld" icon on the shell menu bar.
The preferences menu has moved to the top bar just next to the
Activities
badge. This is not only true formeld
but also for many other GNOME applications, e.g.gedit
.I don't know why they did it and consider it totally useless and counter intuitive, but that's how it works.
sudo vim /usr/lib/python3/dist-packages/meld/meldwindow.py
(or, instead ofvim
, use any other text editor)if not gtk_settings.props.gtk_shell_shows_app_menu:
to
if gtk_settings.props.gtk_shell_shows_app_menu:
Works on
Ubuntu 19.04
I fixed it by installing
gnome-tweaks
and disabling "app menu" under "top bar".