Terminal doesn't have a window shadow when borderless
Submitted by Mike Massonnet
Assigned to Olivier Fourdan @olivier
Description
Hi,
Terminal can be borderless, a shortcut can also be attached to switch the window borders on/off easily.
While running xfwm4 with compositor and shadows, the shadow appears only when the window border are visible.
That's an issue in Terminal, xfwm4 draws shadows without problem on borderless windows, here is a short example:
#!/usr/bin/env seed
Gtk = imports.gi.Gtk;
Gtk.init (null, null);
var window = new Gtk.Window();
window.signal.hide.connect(Gtk.main_quit);
window.decorated = false;
window.show_all();
window.resize(300, 300);
Gtk.main();
If it's on purpose, it can at least be a hidden setting.
Mike
Edited by Yousuf Philips