We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2024773 commit 7044ff5Copy full SHA for 7044ff5
kwin/contents/code/main.js
@@ -5,8 +5,7 @@ const method = "ActiveWindowChanged";
5
function activeWindowChanged(window) {
6
if (window) {
7
const name = window.resourceName + "." + window.resourceClass;
8
- const id = "" + window.id;
9
- print("windowActivated: name=" + name + ", id=" + window.id + ", window=" + window);
+ const id = window.internalId.toString();
10
callDBus(service, path, service, method, name, id);
11
}
12
0 commit comments