After updating my system my emacs windows have a resize grip in the bottom right corner. Is there a way to get rid of it?
The grip does not appear on any other windows.
I'm running Ubuntu 14.04.
After updating my system my emacs windows have a resize grip in the bottom right corner. Is there a way to get rid of it?
The grip does not appear on any other windows.
I'm running Ubuntu 14.04.
Resize grip comes from your GTK theme and you need to disable it via GTK config or by not compiling Emacs with GTK toolkit.
You can check your toolkit version with M-x version
(it should return message similar to "GNU Emacs 24.5.2 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.28…").
Now you can set a GTK theme like e.g. Numix which already handles your issue or adjust your current theme by adding following changes to ~/.gtkrc-2.0
(if Emacs is compiled with GTK2):
style "default-style"
{
GtkWindow::resize-grip-height = 0
GtkWindow::resize-grip-width = 0
}
class "GtkWidget" style "default-style"
or to ~/.config/gtk-3.0/gtk.css
(if Emacs is compiled with GTK3):
* {
-GtkWindow-resize-grip-default: false;
}
Above examples are only presented as a guide; for details about adjusting GTK themes please consult your distro's documentation (or GTK documentation directly).