summaryrefslogtreecommitdiff
path: root/src/gui/core
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-04-09 07:52:59 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-04-09 07:59:29 (GMT)
commitacc7b5f33e93bae3bf43e8f029976b7f74260b52 (patch)
treec0ea91ef69efb8300e97dacb65b3eeebd95f112a /src/gui/core
parentebe248fe406de9565c8c7787187a1d439e68cd84 (diff)
Provided a tree panel to inspect binary content.
Diffstat (limited to 'src/gui/core')
-rw-r--r--src/gui/core/panels.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/core/panels.c b/src/gui/core/panels.c
index bd85be9..3d1a512 100644
--- a/src/gui/core/panels.c
+++ b/src/gui/core/panels.c
@@ -25,6 +25,7 @@
#include "panels.h"
+#include "../panels/bintree.h"
#include "../panels/bookmarks.h"
#include "../panels/glance.h"
#include "../panels/history.h"
@@ -87,6 +88,9 @@ void load_main_panels(GObject *ref)
item = g_bookmarks_panel_new();
register_panel_item(item, ref, config);
+ item = g_bintree_panel_new();
+ register_panel_item(item, ref, config);
+
}