Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added "Info to Clipboard" to context menu #1391

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions ai_diffusion/ui/generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def add(self, job: Job):
"seed": _("Seed"),
}

def _job_info(self, params: JobParams):
def _job_info(self, params: JobParams, tooltip_header: bool = True):
title = params.name if params.name != "" else "<no prompt>"
if len(title) > 70:
title = title[:66] + "..."
Expand All @@ -163,7 +163,7 @@ def _job_info(self, params: JobParams):
title + "\n",
_("Click to toggle preview, double-click to apply."),
"",
]
] if tooltip_header else []
for key, value in params.metadata.items():
if key == "style" and style:
value = style.name
Expand Down Expand Up @@ -340,6 +340,7 @@ def _show_context_menu(self, pos: QPoint):
if job is None or Styles.list().find(job.params.style) is None:
style_action.setEnabled(False)
menu.addAction(_("Copy Seed"), self._copy_seed)
menu.addAction(_("Info to Clipboard"), self._info_to_clipboard)
menu.addSeparator()
save_action = ensure(menu.addAction(_("Save Image"), self._save_image))
if self._model.document.filename == "":
Expand Down Expand Up @@ -381,6 +382,10 @@ def _copy_seed(self):
self._model.fixed_seed = True
self._model.seed = job.params.seed

def _info_to_clipboard(self):
if (job := self.selected_job) and (clipboard := QGuiApplication.clipboard()):
clipboard.setText(self._job_info(job.params, tooltip_header=False))

def _save_image(self):
items = self.selectedItems()
for item in items:
Expand Down
Loading