Ignore:
Timestamp:
02/08/10 07:20:53 (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/TaskDataSelectionForm.cs

    r1709 r1768  
    233233                MessageBox.Show(this, S._("The path you selected is invalid."), S._("Eraser"), 
    234234                    MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1, 
    235                     S.IsRightToLeft(this) ? MessageBoxOptions.RtlReading : 0); 
     235                    S.IsRightToLeft(this) ? 
     236                        MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign : 0); 
    236237            } 
    237238        } 
Note: See TracChangeset for help on using the changeset viewer.