mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2025-02-16 23:34:43 +02: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:
parent
ba09d2599d
commit
bb30dedd09
@ -191,17 +191,11 @@ int Selector::exec(int startSelection) {
|
|||||||
// ...fall through...
|
// ...fall through...
|
||||||
case InputManager::LEFT:
|
case InputManager::LEFT:
|
||||||
if (showDirectories) {
|
if (showDirectories) {
|
||||||
string oldDir = dir;
|
|
||||||
dir = parentDir(dir);
|
dir = parentDir(dir);
|
||||||
if (dir == "/" && oldDir == "/") {
|
|
||||||
close = true;
|
|
||||||
result = false;
|
|
||||||
} else {
|
|
||||||
selected = 0;
|
selected = 0;
|
||||||
firstElement = 0;
|
firstElement = 0;
|
||||||
prepare(fl);
|
prepare(fl);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case InputManager::ACCEPT:
|
case InputManager::ACCEPT:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user