From aac7c125ce1bc3f26e13970e44e7a01b72808c74 Mon Sep 17 00:00:00 2001 From: Julian Sparber Date: Mon, 27 Nov 2023 16:03:51 +0100 Subject: [PATCH] messageTray: Increase max messages per source to 10 After introducing message grouping by source we can safely show much more messages per source. Part-of: --- js/ui/messageTray.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index fde74b08d..30502bfe1 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -22,7 +22,7 @@ const HIDE_TIMEOUT = 200; const LONGER_HIDE_TIMEOUT = 600; const MAX_NOTIFICATIONS_IN_QUEUE = 3; -const MAX_NOTIFICATIONS_PER_SOURCE = 3; +const MAX_NOTIFICATIONS_PER_SOURCE = 10; // We delay hiding of the tray if the mouse is within MOUSE_LEFT_ACTOR_THRESHOLD // range from the point where it left the tray.