diff options
author | Gordon N. Squash <[email protected]> | 2020-07-25 12:09:39 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-25 18:09:39 +0200 |
commit | 969fe79d5b420b89548da7a81fb46a42044b8665 (patch) | |
tree | be368f06e5ab3e52df27c73c69508dcd0d5d35a6 /src/caja-application.c | |
parent | afc16dca546862ff7e19c5bb49568486615b857e (diff) | |
download | caja-969fe79d5b420b89548da7a81fb46a42044b8665.tar.bz2 caja-969fe79d5b420b89548da7a81fb46a42044b8665.tar.xz |
Add a "Bookmarks" sidebar to Caja
Added a "Bookmarks" sidebar to Caja which displays a list of the user's own
bookmarks. Single-clicking any bookmark in the list directs Caja to that
bookmark; middle-clicking on the bookmark directs Caja to open the bookmark
in a new tab.
Diffstat (limited to 'src/caja-application.c')
-rw-r--r-- | src/caja-application.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/caja-application.c b/src/caja-application.c index e02590f1..461bbfd5 100644 --- a/src/caja-application.c +++ b/src/caja-application.c @@ -76,6 +76,7 @@ #include "caja-self-check-functions.h" #include "caja-notes-viewer.h" #include "caja-emblem-sidebar.h" +#include "caja-bookmarks-sidebar.h" #include "caja-image-properties-page.h" #include "caja-desktop-window.h" #include "caja-spatial-window.h" @@ -2278,6 +2279,7 @@ caja_application_startup (GApplication *app) caja_history_sidebar_register (); caja_notes_viewer_register (); /* also property page */ caja_emblem_sidebar_register (); + caja_bookmarks_sidebar_register (); /* register property pages */ caja_image_properties_page_register (); |