Commit bf44e233 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

No longer untag processes after sending a signal

(useful for when SIGTERM fails and one wants to try again
with SIGKILL).
parent 2ecf199c
...@@ -13,6 +13,10 @@ What's new in version 0.6.3 ...@@ -13,6 +13,10 @@ What's new in version 0.6.3
headers are not found. headers are not found.
* Horizontally scroll in larger increments when on the * Horizontally scroll in larger increments when on the
Linux console because of slow update of unaccelerated fb Linux console because of slow update of unaccelerated fb
* No longer untag processes after sending a signal
(useful for when SIGTERM fails and one wants to try again
with SIGKILL). All processes can be untagged at once with 'U'.
(thanks to A. Costa for the suggestion)
What's new in version 0.6.2 What's new in version 0.6.2
......
...@@ -543,7 +543,6 @@ int main(int argc, char** argv) { ...@@ -543,7 +543,6 @@ int main(int argc, char** argv) {
Process* p = (Process*) Panel_get(panel, i); Process* p = (Process*) Panel_get(panel, i);
if (p->tag) { if (p->tag) {
Process_sendSignal(p, signal->number); Process_sendSignal(p, signal->number);
Process_toggleTag(p);
anyTagged = true; anyTagged = true;
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment