diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-09-21 19:29:39 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-09-21 19:29:39 (GMT) |
commit | b6afbe8c699ae76443628badae33beee9934c6bc (patch) | |
tree | 69878624d3ae529314a9824f0c0ceca8bca617b7 /src/gui/core | |
parent | 291968f4f4a5e85f6963813a43f2176320fb8d49 (diff) |
Provided a real welcome panel at startup, with tricks and actions.
Diffstat (limited to 'src/gui/core')
-rw-r--r-- | src/gui/core/panels.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/core/panels.c b/src/gui/core/panels.c index d8565f4..9dcb199 100644 --- a/src/gui/core/panels.c +++ b/src/gui/core/panels.c @@ -33,6 +33,7 @@ #include "../panels/regedit.h" #include "../panels/strings.h" #include "../panels/symbols.h" +#include "../panels/welcome.h" #include "../../core/params.h" #include "../../gtkext/gtkdockable.h" @@ -62,6 +63,9 @@ void load_main_panels(GObject *ref) config = get_main_configuration(); + item = g_welcome_panel_new(); + register_panel_item(item, ref, config); + item = g_log_panel_new(); register_panel_item(item, ref, config); |