summaryrefslogtreecommitdiff
path: root/src/project.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-03-08 19:30:52 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-03-08 19:30:52 (GMT)
commit68bb7efaf61e4f5ca2f2cffce84995ffd667c4cc (patch)
tree9b6a6f63ee20b08d8c2ac35849ee051d61787447 /src/project.c
parentdc9e68505c4cc7ad208e63dbc7d0e0e8f582d0d9 (diff)
Handle cross references as well as entry points.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@482 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/project.c')
-rw-r--r--src/project.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/project.c b/src/project.c
index c8d23f7..5786532 100644
--- a/src/project.c
+++ b/src/project.c
@@ -403,6 +403,8 @@ size_t g_study_project_attach_binary(GStudyProject *project, GLoadedBinary *bina
break;
}
+ manage_editor_items_view(GTK_VIEW_PANEL(view), true);
+
gtk_widget_show(view);
loaded->views[i] = GTK_VIEW_PANEL(view);
@@ -470,6 +472,9 @@ void g_study_project_detach_binary(GStudyProject *project, GLoadedBinary *binary
//gtk_dock_panel_remove_item(dpanel, ditem);
+
+ //manage_editor_items_view(GObject *ref, GtkViewPanel *view, bool created)
+
for (i = 0; i < project->binaries_count; i++)
if (project->binaries[i]->binary == binary) break;