Ignore:
Timestamp:
2/8/2010 7:20:53 AM (2 years ago)
Author:
lowjoel
Message:

Also specify MessageBoxOptions?.RightAlign? if the dialog which owns the message box is RTL-reading. addresses #275: Code Review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eraser6/CodeReview/Eraser/AboutForm.cs

    r1681 r1768  
    207207                    "was: {0}", ex.Message), S._("Eraser"), MessageBoxButtons.OK, 
    208208                    MessageBoxIcon.Error, MessageBoxDefaultButton.Button1, 
    209                     S.IsRightToLeft(null) ? MessageBoxOptions.RtlReading : 0); 
     209                    S.IsRightToLeft(null) ? 
     210                        MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign : 0); 
    210211            } 
    211212        } 
Note: See TracChangeset for help on using the changeset viewer.