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) ...@@ -2041,8 +2041,10 @@ void titlebar(const char *path)
if (inhelp) if (inhelp)
branding = ""; branding = "";
#ifdef ENABLE_BROWSER #ifdef ENABLE_BROWSER
else if (path != NULL) else if (path != NULL) {
branding = "";
prefix = _("DIR:"); prefix = _("DIR:");
}
#endif #endif
else { else {
if (openfile->filename[0] == '\0') 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