Fix priority and notification icons

This commit is contained in:
Hadi Nategh 2019-09-19 16:28:49 +02:00
parent 6f1845d605
commit 807e1151dd

View File

@ -191,7 +191,7 @@ class mail_compose
), ),
'disposition' => array( 'disposition' => array(
'caption' => 'Notification', 'caption' => 'Notification',
'icon' => 'high', 'icon' => 'notification_message',
'group' => ++$group, 'group' => ++$group,
'checkbox' => true, 'checkbox' => true,
'hint' => 'check to receive a notification when the message is read (note: not all clients support this and/or the receiver may not authorize the notification)', 'hint' => 'check to receive a notification when the message is read (note: not all clients support this and/or the receiver may not authorize the notification)',
@ -250,7 +250,7 @@ class mail_compose
$actions['prty']['children'][$key]['icon'] = 'prio_high'; $actions['prty']['children'][$key]['icon'] = 'prio_high';
break; break;
case 'normal': case 'normal':
$actions['prty']['children'][$key]['icon'] = 'prio_normal'; $actions['prty']['children'][$key]['icon'] = 'priority';
break; break;
case 'low': case 'low':
$actions['prty']['children'][$key]['icon'] = 'prio_low'; $actions['prty']['children'][$key]['icon'] = 'prio_low';