1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:37:34 +00:00

Clipboard+LibGUI: Make set_clipboard_data asynchronous

There's no need for GUI applications to block after the clipping is
already in flight.
This commit is contained in:
Andreas Kling 2021-05-10 12:30:41 +02:00
parent bfeacb5728
commit 455afd32f2
2 changed files with 2 additions and 2 deletions

View file

@ -3,5 +3,5 @@ endpoint ClipboardServer
greet() => ()
get_clipboard_data() => (Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata)
set_clipboard_data(Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata) => ()
set_clipboard_data(Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata) =|
}