diff options
author | alcoheca <alcoheca@svn> | 2010-03-02 04:07:38 +0000 |
---|---|---|
committer | alcoheca <alcoheca@svn> | 2010-03-02 04:07:38 +0000 |
commit | b1869861bf6fa6592613bad0645a328ff37e5bb7 (patch) | |
tree | d87602d8acd96d5f4d3ace3873b7b87290d53c5d | |
parent | 8123c313c0633b6f7dd9cef7c37e4b7b5d8faedc (diff) |
fixed: script browsing
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28290 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/GUIWindowScripts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/GUIWindowScripts.cpp b/xbmc/GUIWindowScripts.cpp index 77a6062640..8c2694a6c4 100644 --- a/xbmc/GUIWindowScripts.cpp +++ b/xbmc/GUIWindowScripts.cpp @@ -74,7 +74,7 @@ bool CGUIWindowScripts::OnMessage(CGUIMessage& message) case GUI_MSG_WINDOW_INIT: { if (m_vecItems->m_strPath == "?") - m_vecItems->m_strPath = "special://scripts/"; + m_vecItems->m_strPath = g_settings.GetScriptsFolder(); return CGUIMediaWindow::OnMessage(message); } break; |