summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
Diffstat (limited to 'skins')
-rw-r--r--skins/default/templates/compose.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/default/templates/compose.html b/skins/default/templates/compose.html
index 0630a5713..e827a024a 100644
--- a/skins/default/templates/compose.html
+++ b/skins/default/templates/compose.html
@@ -13,7 +13,7 @@ function rcmail_toggle_display(id)
var row, disp;
if (row = document.getElementById(id))
{
- disp = (!row.style.display || row.style.display=='none') ? (document.all ? 'block' : 'table-row') : 'none';
+ disp = (!row.style.display || row.style.display=='none') ? ((document.all && !window.opera) ? 'block' : 'table-row') : 'none';
row.style.display = disp;
}