message_edit: Change initial default for old thread notifications.

After some discussion with the community, we've concluded that in most
cases, one probably wants to notify only the destination thread, not
the source location; so let's make that the default.

We preserve the model that we remember what you did during the last
move in a given browser session, which is very helpful if you're doing
an operation N times in a row.

Fixes #21838.
This commit is contained in:
Tim Abbott
2022-06-03 17:33:06 -07:00
committed by Tim Abbott
parent 890de402df
commit d6739078ad

View File

@@ -43,7 +43,7 @@ const currently_echoing_messages = new Map();
// These variables are designed to preserve the user's most recent // These variables are designed to preserve the user's most recent
// choices when editing a group of messages, to make it convenient to // choices when editing a group of messages, to make it convenient to
// move several topics in a row with the same settings. // move several topics in a row with the same settings.
export let notify_old_thread_default = true; export let notify_old_thread_default = false;
export let notify_new_thread_default = true; export let notify_new_thread_default = true;