Bug 460883

Summary: [scripting] onClientStartUserMovedResized not called when client is inactive
Product: [Plasma] kwin Reporter: Gerrit De Vriese <gdvproxy>
Component: scriptingAssignee: KWin default assignee <kwin-bugs-null>
Status: REPORTED ---    
Severity: normal CC: nate
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Arch Linux   
OS: Linux   
Latest Commit: Version Fixed In:
Sentry Crash Report:

Description Gerrit De Vriese 2022-10-23 08:45:32 UTC
SUMMARY
The signal "onClientStartUserMovedResized" is not being called when the user moves an inactive window, for example using the Super+LClick shortcut.

STEPS TO REPRODUCE
1. Move an inactive window by holding Super+LClick and dragging the window

OBSERVED RESULT
onClientStartUserMovedResized is not being called 

EXPECTED RESULT
onClientStartUserMovedResized is called 

SOFTWARE/OS VERSIONS
KDE Plasma Version: 5.26.1
KDE Frameworks Version: 5.99.0
Qt Version: 5.15.6
Kernel Version: 6.0.2-arch1-1 (64-bit)
Graphics Platform: X11

ADDITIONAL INFORMATION
I could not find any information about this signal in the docs, but it is used like in quite a few declarativescript scripts (qml) on the store like this:

Connections {
    target: workspace.activeClient
    function onClientStartUserMovedResized(client) {
        //...
    }
}