@abmorris commented on this pull request.
> @@ -1187,6 +1214,22 @@ gboolean configuration_load(void)
}
+gboolean configuration_load(void)
+{
+ gboolean prefs_loaded = read_config_file(PREFERENCES_FILE, PREFERENCES);
+ /* backwards-compatibility: try to read session from preferences if
session file doesn't exist */
+ gchar *session_filename = SESSION_FILE;
+ gchar *session_file = g_build_filename(app->configdir,
session_filename, NULL);
Added in c0303c84
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2776#discussion_r607104565