https://bugs.kde.org/show_bug.cgi?id=381106

--- Comment #2 from Tom B <t...@r.je> ---
Sorry that should be "programatically".


The following kwin script 


```

var geo = client.geometry;
geo.x += 100;
client.geometry = geo;
```

Will not trigger windowGeometryShapeChanged in an effect

Either:

1) This is a bug and the effect should be triggered as the geometry has changed
(it's x position has been updated) 

or 2) This is not a bug, windowGeometryShapeChanged should only be triggered
when the width/height are changed but there is no way to write a kwin effect
(in javascript) that responds to windows being moved (but not resized)



> This is caused if the window changes geometry without user interaction

Since window.geometry includes the properties x, x, width and height, I would
expect that a change to any of these four properties would trigger
windowGeometryShapeChanged. As it stands, it's only triggered when width or
height are changed.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to