Skip to content

Commit

Permalink
Make window name unique (#478)
Browse files Browse the repository at this point in the history
Since UUID is the same the window name is not unique.
In order to get it unique we append the monitor instead.

Fixes #477
  • Loading branch information
dtrunk90 authored Jul 27, 2024
1 parent f61db0c commit e2d1615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion budgie-showtime/src/showtime_desktop/showtime_desktop.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e2d1615

Please sign in to comment.