summaryrefslogtreecommitdiff
path: root/desktop/global_history.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/global_history.c')
-rw-r--r--desktop/global_history.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/desktop/global_history.c b/desktop/global_history.c
index 6713fcab5..3861ee27b 100644
--- a/desktop/global_history.c
+++ b/desktop/global_history.c
@@ -949,3 +949,17 @@ void global_history_keypress(uint32_t key)
treeview_keypress(gh_ctx.tree, key);
}
+
+/* Exported interface, documented in global_history.h */
+bool global_history_has_selection(void)
+{
+ return treeview_has_selection(gh_ctx.tree);
+}
+
+
+/* Exported interface, documented in global_history.h */
+int global_history_get_height(void)
+{
+ return treeview_get_height(gh_ctx.tree);
+}
+