diff --git a/src/help.cpp b/src/help.cpp index 64813a8f..1204f000 100644 --- a/src/help.cpp +++ b/src/help.cpp @@ -293,6 +293,7 @@ void Help::GetKeybindings() *w << DisplayKeys(Key.Space) << "Select/deselect song (right column)\n"; *w << DisplayKeys(&Key.VolumeDown[0], 1) << "Previous column\n"; *w << DisplayKeys(&Key.VolumeUp[0], 1) << "Next column\n"; + *w << DisplayKeys(Key.GoToParentDir) << "Go to parent directory (left column, directories view)\n"; # endif // HAVE_TAGLIB_H diff --git a/src/ncmpcpp.cpp b/src/ncmpcpp.cpp index 424ca084..350fd940 100644 --- a/src/ncmpcpp.cpp +++ b/src/ncmpcpp.cpp @@ -533,6 +533,13 @@ int main(int argc, char *argv[]) myBrowser->Main()->Reset(); myBrowser->EnterPressed(); } +# ifdef HAVE_TAGLIB_H + else if (myScreen->ActiveWindow() == myTagEditor->Dirs && myTagEditor->CurrentDir() != "/") + { + myTagEditor->Dirs->Reset(); + myTagEditor->EnterPressed(); + } +# endif // HAVE_TAGLIB_H } else if (Keypressed(input, Key.Enter)) {