Merge pull request #431 from techee/absolute_prjname
Always use absolute path when opening projects from command-line
This commit is contained in:
commit
96e2635abe
@ -900,11 +900,14 @@ static void load_startup_files(gint argc, gchar **argv)
|
||||
|
||||
if (argc > 1 && g_str_has_suffix(argv[1], ".geany"))
|
||||
{
|
||||
gchar *filename = main_get_argv_filename(argv[1]);
|
||||
|
||||
/* project file specified: load it, but decide the session later */
|
||||
main_load_project_from_command_line(argv[1], FALSE);
|
||||
main_load_project_from_command_line(filename, FALSE);
|
||||
argc--, argv++;
|
||||
/* force session load if using project-based session files */
|
||||
load_session = project_prefs.project_session;
|
||||
g_free(filename);
|
||||
}
|
||||
|
||||
/* Load the default session if:
|
||||
|
Loading…
x
Reference in New Issue
Block a user