show the complete path menu when the menu is not yet...
...available
... | ... |
@@ -54,8 +54,11 @@ var softkeysClass = { |
54 | 54 |
pop(me.path); |
55 | 55 |
me.device.display.updateSoftKeys(); |
56 | 56 |
} |
57 |
- else |
|
58 |
- print(me.device.role ~ '/' ~ key ~ ' : not yet implemented'); |
|
57 |
+ else { |
|
58 |
+ var list_path = ''; |
|
59 |
+ foreach(var p; me.path) list_path ~= p ~ '/'; |
|
60 |
+ print(me.device.role ~ ':' ~ list_path ~ key ~ ' : not yet implemented'); |
|
61 |
+ } |
|
59 | 62 |
}, |
60 | 63 |
|
61 | 64 |
bindings : { |