mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
small enhancements of messages
This commit is contained in:
parent
f100a6c563
commit
0ad0b3927f
1 changed files with 3 additions and 3 deletions
|
|
@ -88,7 +88,7 @@ class CopyFileActionPlugin(LoaderActionPlugin):
|
|||
clipboard = QtWidgets.QApplication.clipboard()
|
||||
if not clipboard:
|
||||
return LoaderActionResult(
|
||||
"Failed to copy file path to clipboard",
|
||||
"Failed to copy file path to clipboard.",
|
||||
success=False,
|
||||
)
|
||||
|
||||
|
|
@ -97,7 +97,7 @@ class CopyFileActionPlugin(LoaderActionPlugin):
|
|||
clipboard.setText(os.path.normpath(path))
|
||||
|
||||
return LoaderActionResult(
|
||||
"Path stored to clipboard",
|
||||
"Path stored to clipboard...",
|
||||
success=True,
|
||||
)
|
||||
|
||||
|
|
@ -110,6 +110,6 @@ class CopyFileActionPlugin(LoaderActionPlugin):
|
|||
clipboard.setMimeData(data)
|
||||
|
||||
return LoaderActionResult(
|
||||
"File added to clipboard",
|
||||
"File added to clipboard...",
|
||||
success=True,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue