From fe1a586fb3f11eb13472f2fe77f5594efa07a8fe Mon Sep 17 00:00:00 2001 From: Paul Cercueil Date: Sat, 17 May 2014 13:56:16 +0200 Subject: [PATCH] Don't consider *.dge files as being executables --- src/gmenu2x.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gmenu2x.cpp b/src/gmenu2x.cpp index 8aad6bc..15d9b9f 100644 --- a/src/gmenu2x.cpp +++ b/src/gmenu2x.cpp @@ -677,7 +677,7 @@ void GMenu2X::main() { } void GMenu2X::explorer() { - FileDialog fd(this, ts, tr["Select an application"], "dge,sh,bin,py,elf,"); + FileDialog fd(this, ts, tr["Select an application"], "sh,bin,py,elf,"); if (fd.exec()) { if (confInt["saveSelection"] && (confInt["section"]!=menu->selSectionIndex() || confInt["link"]!=menu->selLinkIndex())) writeConfig(); @@ -885,7 +885,7 @@ void GMenu2X::changeWallpaper() { } void GMenu2X::addLink() { - FileDialog fd(this, ts, tr["Select an application"], "dge,sh,bin,py,elf,"); + FileDialog fd(this, ts, tr["Select an application"], "sh,bin,py,elf,"); if (fd.exec()) menu->addLink(fd.getPath(), fd.getFile()); }