From e2d1615433b5d51a148701ebe49692930140dbf0 Mon Sep 17 00:00:00 2001 From: Danny Trunk Date: Sat, 27 Jul 2024 12:30:53 +0200 Subject: [PATCH] Make window name unique (#478) Since UUID is the same the window name is not unique. In order to get it unique we append the monitor instead. Fixes #477 --- budgie-showtime/src/showtime_desktop/showtime_desktop.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/budgie-showtime/src/showtime_desktop/showtime_desktop.vala b/budgie-showtime/src/showtime_desktop/showtime_desktop.vala index 05200335..18f4e697 100644 --- a/budgie-showtime/src/showtime_desktop/showtime_desktop.vala +++ b/budgie-showtime/src/showtime_desktop/showtime_desktop.vala @@ -510,7 +510,7 @@ namespace ShowTime { win_name = "Showtime"; if (args.length == 5) { subwindow = true; - win_name = "Showtime_".concat(args[1]); + win_name = "Showtime_".concat(args[2]); custom_posargs = {int.parse(args[3]), int.parse(args[4])}; } new TimeWindow(uuid);