Commit f9bf320f authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

titlebar: don't show nano's name and version when in the file browser

No related merge requests found
Showing with 3 additions and 1 deletion
+3 -1
......@@ -2041,8 +2041,10 @@ void titlebar(const char *path)
if (inhelp)
branding = "";
#ifdef ENABLE_BROWSER
else if (path != NULL)
else if (path != NULL) {
branding = "";
prefix = _("DIR:");
}
#endif
else {
if (openfile->filename[0] == '\0')
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment