We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 664464f commit 3aae653Copy full SHA for 3aae653
contents/code/main.js
@@ -134,8 +134,8 @@ function restoreMinimized() {
134
// check for overlap with other windows
135
noOverlap = true;
136
const clients = workspace.clientList();
137
- for (var i = 0; i < clients.length; i++) {
138
- other = clients[i];
+ for (var j = 0; j < clients.length; j++) {
+ other = clients[j];
139
if (overlap(inactive, other)) {
140
// overlap: don't restore current window
141
noOverlap = false;
0 commit comments