neutrino: fix file locations. use the predetermined CONFIGDIR instead of hardcoding paths.

This commit is contained in:
[CST] Bas
2013-01-25 10:33:40 +08:00
parent 05bc38eac5
commit 8dfa226920
12 changed files with 16 additions and 16 deletions

View File

@@ -91,7 +91,7 @@ int CKeybindSetup::exec(CMenuTarget* parent, const std::string &actionKey)
CFileFilter fileFilter;
fileFilter.addFilter("conf");
fileBrowser.Filter = &fileFilter;
if (fileBrowser.exec("/var/tuxbox/config") == true) {
if (fileBrowser.exec(CONFIGDIR "") == true) {
CNeutrinoApp::getInstance()->loadKeys(fileBrowser.getSelectedFile()->Name.c_str());
printf("[neutrino keybind_setup] new keys: %s\n", fileBrowser.getSelectedFile()->Name.c_str());
}