Skip to content

Commit

Permalink
Increase window-clone shadow size (#1781)
Browse files Browse the repository at this point in the history
Co-authored-by: Danielle Foré <[email protected]>
  • Loading branch information
lenemter and danirabbit authored Oct 27, 2023
1 parent c4bd6cc commit 433c4e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions plugins/pip/PopupWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/WindowClone.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 433c4e9

Please sign in to comment.