[plasmashell] [Bug 365948] Windows with focus that are not on top are minimized when clicked in the task manager

2016-07-21 Thread Eike Hein via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365948

--- Comment #1 from Eike Hein  ---
Can't reproduce at all. The lower window gets raised and focused, but not
minimized.

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


[plasmashell] [Bug 365948] Windows with focus that are not on top are minimized when clicked in the task manager

2017-12-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=365948

Nate Graham  changed:

   What|Removed |Added

 CC||pointedst...@zoho.com
 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

--- Comment #2 from Nate Graham  ---
I can still reproduce on 5.11.4. You don't even need to activate
raise-on-hover, just do this:

1. Turn on or continue to use focus Follows Mouse
2. Move one window partially in front but not completely covering another
3. Click on that window's Task Manager button

It gets minimized, not raised.

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

[plasmashell] [Bug 365948] Windows with focus that are not on top are minimized when clicked in the task manager

2020-08-21 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=365948

Nate Graham  changed:

   What|Removed |Added

 CC||hannah.ritt...@gmx.de

--- Comment #3 from Nate Graham  ---
*** Bug 401462 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 365948] Windows with focus that are not on top are minimized when clicked in the task manager

2023-08-03 Thread Noah Davis
https://bugs.kde.org/show_bug.cgi?id=365948

Noah Davis  changed:

   What|Removed |Added

 CC||noaha...@gmail.com

--- Comment #4 from Noah Davis  ---
In order to fix this, the `activateTask()` function in
plasma-desktop/applets/taskmanager/package/contents/ui/code/tools.js will have
to be patched. I think the relevant part is this part at the bottom of the
function.

```
function activateTask(index, model, modifiers, task, plasmoid, tasks) {
// [snip]
} else {
if (model.IsMinimized === true) {
tasks.tasksModel.requestToggleMinimized(index);
tasks.tasksModel.requestActivate(index);
} else if (model.IsActive === true &&
plasmoid.configuration.minimizeActiveTaskOnClick) { // This needs to account
for stacking order
tasks.tasksModel.requestToggleMinimized(index);
} else {
tasks.tasksModel.requestActivate(index);
}
}
}
```

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

[plasmashell] [Bug 365948] Windows with focus that are not on top are minimized when clicked in the task manager

2023-08-03 Thread Noah Davis
https://bugs.kde.org/show_bug.cgi?id=365948

--- Comment #5 from Noah Davis  ---
It's also worth noting that if we do want to fix this, the "Clicking active
task: [x] Minimizes the task" checkbox in the config dialog will need to be
changed in order to be truthful.

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

[plasmashell] [Bug 365948] Windows with focus that are not on top are minimized when clicked in the task manager

2016-07-21 Thread Eike Hein via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365948

--- Comment #1 from Eike Hein  ---
Can't reproduce at all. The lower window gets raised and focused, but not
minimized.

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


[plasmashell] [Bug 365948] Windows with focus that are not on top are minimized when clicked in the task manager

2017-12-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=365948

Nate Graham  changed:

   What|Removed |Added

 CC||pointedst...@zoho.com
 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

--- Comment #2 from Nate Graham  ---
I can still reproduce on 5.11.4. You don't even need to activate
raise-on-hover, just do this:

1. Turn on or continue to use focus Follows Mouse
2. Move one window partially in front but not completely covering another
3. Click on that window's Task Manager button

It gets minimized, not raised.

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