Skip to content

Commit

Permalink
projectorganizer: The ./ prefix in message window is unnecessary
Browse files Browse the repository at this point in the history
And looks ugly under Windows.
  • Loading branch information
techee committed Dec 18, 2014
1 parent 524dbb8 commit 8c7feda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projectorganizer/src/prjorg-sidebar.c
Expand Up @@ -372,7 +372,7 @@ static void find_file_recursive(GtkTreeIter *iter, gboolean case_sensitive, gboo

path = build_path(iter);
rel_path = get_file_relative_path(geany_data->app->project->base_path, path);
msgwin_msg_add(COLOR_BLACK, -1, NULL, "./%s", rel_path ? rel_path : path);
msgwin_msg_add(COLOR_BLACK, -1, NULL, "%s", rel_path ? rel_path : path);
g_free(path);
g_free(rel_path);
}
Expand Down

0 comments on commit 8c7feda

Please sign in to comment.