diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-09-05 22:53:24 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-09-05 22:53:24 (GMT) |
commit | 1a85f36e0505d75a51ab7b7f2c5078da7ef6bd98 (patch) | |
tree | a9a7d542f0ed00f418b61122a27ec9f1927e646f /src/gui | |
parent | 3d65cfcb6403d169b52045a9e5c242ad081539a7 (diff) |
Made server connections easier while running analysis.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/editor.c b/src/gui/editor.c index 75efc2f..8280e7c 100644 --- a/src/gui/editor.c +++ b/src/gui/editor.c @@ -900,7 +900,7 @@ static void on_editor_content_available(GStudyProject *project, GLoadedContent * g_signal_connect(content, "analyzed", G_CALLBACK(on_loaded_content_analyzed), project); - g_loaded_content_analyze(content, true); + g_loaded_content_analyze(content, true, true); } |