diff --git a/ChangeLog b/ChangeLog index 0e070328..f8f3c12c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,10 @@ What's new in version 0.6.3 headers are not found. * Horizontally scroll in larger increments when on the 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 diff --git a/htop.c b/htop.c index 7ffccaa2..8ce6a798 100644 --- a/htop.c +++ b/htop.c @@ -543,7 +543,6 @@ int main(int argc, char** argv) { Process* p = (Process*) Panel_get(panel, i); if (p->tag) { Process_sendSignal(p, signal->number); - Process_toggleTag(p); anyTagged = true; } }