We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 543754d commit 92187d8Copy full SHA for 92187d8
ai_diffusion/ui/generation.py
@@ -225,6 +225,12 @@ def _job_id(item: QListWidgetItem | None):
225
else:
226
self.update_apply_button() # selection may have moved
227
228
+ for i in range(self.count()):
229
+ item = self.item(i)
230
+ next_item = self.item(i + 1)
231
+ if item and item.text() != "" and next_item and next_item.text() != "":
232
+ self.takeItem(i)
233
+
234
def update_selection(self):
235
with theme.SignalBlocker(self):
236
for i in range(self.count()):
0 commit comments