1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-06-28 12:39:50 +03:00

When selector goes up from the root directory, stay in the root

Previously the selector would exit, but I don't see the logic in that.
This commit is contained in:
Maarten ter Huurne 2014-08-17 10:25:28 +02:00
parent ba09d2599d
commit bb30dedd09

View File

@ -191,16 +191,10 @@ int Selector::exec(int startSelection) {
// ...fall through...
case InputManager::LEFT:
if (showDirectories) {
string oldDir = dir;
dir = parentDir(dir);
if (dir == "/" && oldDir == "/") {
close = true;
result = false;
} else {
selected = 0;
firstElement = 0;
prepare(fl);
}
selected = 0;
firstElement = 0;
prepare(fl);
}
break;