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 e9f9cbd commit fa805c8Copy full SHA for fa805c8
ai_diffusion/ui/generation.py
@@ -394,6 +394,9 @@ def _copy_prompt(self):
394
if isinstance(active, RootRegion):
395
active.negative = job.params.metadata.get("negative_prompt", "")
396
397
+ if clipboard := QGuiApplication.clipboard():
398
+ clipboard.setText(job.params.prompt)
399
+
400
if self._model.workspace is Workspace.custom and self._model.document.is_active:
401
self._model.custom.try_set_params(job.params.metadata)
402
0 commit comments