1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:32:20 +03:00

Make the file selector accept all files by default

This commit is contained in:
Paul Cercueil 2013-07-21 15:43:41 -04:00
parent a682d10657
commit a0515ad356

View File

@ -72,7 +72,7 @@ LinkApp::LinkApp(GMenu2X *gmenu2x_, Touchscreen &ts, InputManager &inputMgr_,
setClock(gmenu2x->getDefaultAppClock());
#endif
selectordir = "";
selectorfilter = "";
selectorfilter = "*";
icon = iconPath = "";
selectorbrowser = true;
editable = true;
@ -168,6 +168,7 @@ LinkApp::LinkApp(GMenu2X *gmenu2x_, Touchscreen &ts, InputManager &inputMgr_,
#ifdef HAVE_LIBXDGMIME
if (!strncmp(key, "MimeType", lkey)) {
string mimetypes = buf;
selectorfilter = "";
while ((pos = mimetypes.find(';')) != mimetypes.npos) {
int nb = 16;
@ -327,7 +328,7 @@ bool LinkApp::save() {
#if defined(PLATFORM_A320) || defined(PLATFORM_GCW0)
if (consoleApp ) f << "consoleapp=true" << endl;
#endif
if (selectorfilter!="" ) f << "selectorfilter=" << selectorfilter << endl;
if (selectorfilter!="*" ) f << "selectorfilter=" << selectorfilter << endl;
#ifdef HAVE_LIBOPK
}
#endif