summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/BookmarksBarWidget.h
AgeCommit message (Collapse)Author
2022-07-27Browser: Give BookmarksBarWidget a minimum sizeSam Atkins
Without this, it gets a minimum size that's very large and stops you from resizing the Browser window narrower than 609px.
2022-07-14Browser: Use OpenInNewTab parameter in on_bookmark_click handlernetworkException
This patch makes the function signature of the on_bookmark_click handler more readable by replacing `Mod_None` with `OpenInNewTab::No` and `Mod_Ctrl` with `OpenInNewTab::Yes`.
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-26Browser: Add right-click context menu item for editing bookmarksTimothy Flynn
This allows users to right-click on a bookmark button to open a small dialog for editing bookmark titles and URLs.
2021-01-12Applications: Move to Userland/Applications/Andreas Kling