diff options
author | Vadim ProductEngine <vsavchuk@productengine.com> | 2010-10-14 20:15:53 +0300 |
---|---|---|
committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2010-10-14 20:15:53 +0300 |
commit | 69ae08acc949789daeff2c214eb569082e171fa9 (patch) | |
tree | 992b103d9c2684db1a435efbff751a13d0db7373 /indra | |
parent | 7ea2a1f9cc998396f437ec2535ddb1d51cce46b1 (diff) |
STORM-376 FIXED Toast close button sometimes didn't disappear.
Reason:
Each toast's panel lies on an invisible floater which is a bit bigger than the panel.
Notification toasts were displayed so close to each other that the floaters were overlapped by 2 pixels.
Because of the overlapping, toasts sometimes didn't receive mouse-leave events, thus not hiding their close buttons.
Fix:
Increased padding between toasts by 2 pixels (from 5 to 7) to eliminate overlapping.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/app_settings/settings.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 742a20a849..d4a93f1f9b 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -5772,13 +5772,13 @@ <key>ToastGap</key> <map> <key>Comment</key> - <string>Gap between toasts on a screen</string> + <string>Gap between toasts on a screen (min. value is 5)</string> <key>Persist</key> <integer>1</integer> <key>Type</key> <string>S32</string> <key>Value</key> - <integer>5</integer> + <integer>7</integer> </map> <key>ToastButtonWidth</key> <map> |