diff options
| author | phintuka <phintuka> | 2012-01-16 11:40:40 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2012-01-16 11:40:40 +0000 |
| commit | 9ad5a5d01bf7e1c2e61cf92784b9705b1334d229 (patch) | |
| tree | 19e957b073ac5788a99f14279eee7de42fce15ae | |
| parent | ec0d598d015d1f2a86db8787c9431a430e8ffa14 (diff) | |
| download | xineliboutput-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |
