From 3a9af23cda613f7cad497ef824fd80ed66229d56 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind1991@gmail.com>
Date: Fri, 29 Jul 2011 02:02:17 +0200
Subject: [PATCH] always show download icon on hover

---
 files/js/fileactions.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/js/fileactions.js b/files/js/fileactions.js
index e1f25885fec..4de7fa5542b 100644
--- a/files/js/fileactions.js
+++ b/files/js/fileactions.js
@@ -56,7 +56,7 @@ FileActions={
 		var actions=FileActions.get(FileActions.getCurrentMimeType(),FileActions.getCurrentType());
 		var defaultAction=FileActions.getDefault(FileActions.getCurrentMimeType(),FileActions.getCurrentType());
 		for(name in actions){
-			if(actions[name]!=defaultAction && name!='Delete'){
+			if((name=='Download' || actions[name]!=defaultAction) && name!='Delete'){
 				var img=FileActions.icons[name];
 				var html='<a href="#" title="'+name+'" class="file_action"/>';
 				var element=$(html);
-- 
GitLab