diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/editor.c | 2 | ||||
-rw-r--r-- | src/gui/menus/file.c | 2 | ||||
-rw-r--r-- | src/gui/menus/project.c | 2 | ||||
-rw-r--r-- | src/gui/panels/welcome.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/editor.c b/src/gui/editor.c index b52ec9d..205c78f 100644 --- a/src/gui/editor.c +++ b/src/gui/editor.c @@ -965,7 +965,7 @@ static void on_editor_contents_available(GStudyProject *project, GLoadedContent { g_signal_connect(contents[i], "analyzed", G_CALLBACK(on_loaded_content_analyzed), project); - g_loaded_content_analyze(contents[i]); + g_loaded_content_analyze(contents[i], true); g_object_unref(G_OBJECT(contents[i])); diff --git a/src/gui/menus/file.c b/src/gui/menus/file.c index d9232db..469aa41 100644 --- a/src/gui/menus/file.c +++ b/src/gui/menus/file.c @@ -186,7 +186,7 @@ static void mcb_file_open_project(GtkMenuItem *menuitem, gpointer unused) { filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); - project = g_study_project_open(filename); + project = g_study_project_open(filename, true); if (project != NULL) { diff --git a/src/gui/menus/project.c b/src/gui/menus/project.c index 80eff6f..459d963 100644 --- a/src/gui/menus/project.c +++ b/src/gui/menus/project.c @@ -205,7 +205,7 @@ static void mcb_project_add_binary_file(GtkMenuItem *menuitem, GMenuBar *bar) if (content != NULL) { - g_study_project_discover_binary_content(project, content, NULL, NULL); + g_study_project_discover_binary_content(project, content, true, NULL, NULL); g_object_unref(G_OBJECT(content)); } diff --git a/src/gui/panels/welcome.c b/src/gui/panels/welcome.c index 30652d8..8b74f78 100644 --- a/src/gui/panels/welcome.c +++ b/src/gui/panels/welcome.c @@ -602,7 +602,7 @@ static void on_row_activated_for_projects(GtkTreeView *treeview, GtkTreePath *pa if (valid) { - project = g_study_project_open(filename); + project = g_study_project_open(filename, true); if (project != NULL) { |