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.DefaultPlugins/ErasureMethods/FirstLast16KB.cs

    r1767 r1768  
    5454                    "be set in the Plugin Settings dialog."), Name, MessageBoxButtons.OK, 
    5555                    MessageBoxIcon.Error, MessageBoxDefaultButton.Button1, 
    56                     S.IsRightToLeft(null) ? MessageBoxOptions.RtlReading : 0); 
     56                    S.IsRightToLeft(null) ? 
     57                        MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign : 0); 
    5758            } 
    5859        } 
Note: See TracChangeset for help on using the changeset viewer.