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

--- Comment #1 from LinG <lingtj...@hotmail.com> ---
Here is a MWE

var clients = workspace.clientList();
for (var i = 0; i < clients.length; i++)
{
  if (clients[i] === null) {continue;}
  if (clients[i].resourceName.toString() === 'konsole') // or any other client
that you have open
  {
    var pre = clients[i].screen;
    clients[i].screen = 1;
    var post = clients[i].screen;
    print(pre, post, workspace.numScreens); // output: 0 0 2, expected output 0
1 2
  }
}

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

Reply via email to