summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2012-01-16 11:40:40 +0000
committerphintuka <phintuka>2012-01-16 11:40:40 +0000
commit9ad5a5d01bf7e1c2e61cf92784b9705b1334d229 (patch)
tree19e957b073ac5788a99f14279eee7de42fce15ae
parentec0d598d015d1f2a86db8787c9431a430e8ffa14 (diff)
downloadxineliboutput-9ad5a5d01bf7e1c2e61cf92784b9705b1334d229.tar.gz
xineliboutput-9ad5a5d01bf7e1c2e61cf92784b9705b1334d229.tar.bz2
Fixed setting "Delete" color button in file browser:
Can't delete dirs in media player menu
-rw-r--r--menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index 7efc38e2..a484c6b0 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c,v 1.88 2011-07-10 21:35:22 phintuka Exp $
+ * $Id: menu.c,v 1.89 2012-01-16 11:40:40 phintuka Exp $
*
*/
@@ -289,7 +289,7 @@ void cMenuBrowseFiles::SetHelpButtons(void)
help[0] = isDir && isDvd ? trVDR("Button$Open") : NULL;
help[1] = hasResume ? trVDR("Button$Rewind") : NULL;
- help[2] = isFile || isDvd ? trVDR("Button$Delete") : NULL;
+ help[2] = isFile ? trVDR("Button$Delete") : NULL;
help[3] = isFile ? trVDR("Button$Info") : NULL;
}