Increase window-clone shadow size (#1781)

Co-authored-by: Danielle Foré <danielle@elementary.io>
This commit is contained in:
Leo 2023-10-28 03:29:20 +09:00 committed by GitHub
parent c4bd6cceac
commit 433c4e911b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -7,7 +7,6 @@
public class Gala.Plugins.PIP.PopupWindow : Clutter.Actor {
private int button_size;
private int container_margin;
private const int SHADOW_SIZE = 100;
private const uint FADE_OUT_TIMEOUT = 200;
private const float MINIMUM_SCALE = 0.1f;
private const float MAXIMUM_SCALE = 1.0f;
@ -88,7 +87,7 @@ public class Gala.Plugins.PIP.PopupWindow : Clutter.Actor {
container = new Clutter.Actor ();
container.reactive = true;
container.set_scale (0.35f, 0.35f);
container.add_effect (new ShadowEffect (SHADOW_SIZE) { css_class = "window-clone" });
container.add_effect (new ShadowEffect (55) { css_class = "window-clone" });
container.add_child (clone);
container.add_action (move_action);

View File

@ -241,7 +241,7 @@ public class Gala.WindowClone : Clutter.Actor {
if (window.fullscreen || window.maximized_horizontally && window.maximized_vertically) {
if (shadow_effect == null) {
shadow_effect = new ShadowEffect (40) { css_class = "window-clone" };
shadow_effect = new ShadowEffect (55) { css_class = "window-clone" };
shadow_opacity = 0;
clone.add_effect_with_name ("shadow", shadow_effect);
}