1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

TextEditor: Open links from Web::PageView using Desktop::Launcher

So far, clicking on a link from the Markdown/HTML preview Web::PageView did
nothing - now we pass that link to Desktop::Launcher, which will then
open it in Browser, FileManager, another TextEditor instance etc.
This commit is contained in:
Linus Groh 2020-08-11 15:13:07 +02:00 committed by Andreas Kling
parent 49d5232f33
commit 1353edd090
2 changed files with 12 additions and 3 deletions

View file

@ -4,4 +4,4 @@ set(SOURCES
)
serenity_bin(TextEditor)
target_link_libraries(TextEditor LibWeb LibMarkdown LibGUI)
target_link_libraries(TextEditor LibWeb LibMarkdown LibGUI LibDesktop)