Bug 460883 - [scripting] onClientStartUserMovedResized not called when client is inactive
Summary: [scripting] onClientStartUserMovedResized not called when client is inactive
Status: REPORTED
Alias: None
Product: kwin
Classification: Plasma
Component: scripting (show other bugs)
Version: unspecified
Platform: Arch Linux Linux
: NOR normal
Target Milestone: ---
Assignee: KWin default assignee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-10-23 08:45 UTC by Gerrit De Vriese
Modified: 2022-10-24 20:11 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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) {
        //...
    }
}