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

Browser: Add right-click context menu item for editing bookmarks

This allows users to right-click on a bookmark button to open a small
dialog for editing bookmark titles and URLs.
This commit is contained in:
Timothy Flynn 2021-03-25 07:34:55 -04:00 committed by Andreas Kling
parent 990e362a17
commit cd82fd24e2
4 changed files with 174 additions and 0 deletions

View file

@ -1,4 +1,5 @@
compile_gml(BrowserWindow.gml BrowserWindowGML.h browser_window_gml)
compile_gml(EditBookmark.gml EditBookmarkGML.h edit_bookmark_gml)
compile_gml(Tab.gml TabGML.h tab_gml)
set(SOURCES
@ -12,6 +13,7 @@ set(SOURCES
Tab.cpp
WindowActions.cpp
BrowserWindowGML.h
EditBookmarkGML.h
TabGML.h
)