mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Fix to broken icon width rendering in ModeListRenderer
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7747 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -119,9 +119,9 @@ public class ModeListRenderer extends BaseRenderer
|
||||
// output icon column
|
||||
if (list.getIconColumnWidth() != 0)
|
||||
{
|
||||
out.write("<td style='width:");
|
||||
out.write("<td style='width:");
|
||||
out.write(String.valueOf(list.getIconColumnWidth()));
|
||||
out.write(";'></td>");
|
||||
out.write("px'></td>");
|
||||
}
|
||||
|
||||
// output title label
|
||||
@@ -354,7 +354,7 @@ public class ModeListRenderer extends BaseRenderer
|
||||
{
|
||||
out.write("<td style='width:");
|
||||
out.write(String.valueOf(list.getIconColumnWidth()));
|
||||
out.write(";'>");
|
||||
out.write("px'>");
|
||||
|
||||
// if the "selectedImage" property is set and this item is selected then show it
|
||||
if (selected == true && selectedImage != null)
|
||||
|
Reference in New Issue
Block a user