Changeset 1768 for branches/eraser6/CodeReview/Eraser/SettingsPanel.cs
- Timestamp:
- 2/8/2010 7:20:53 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/CodeReview/Eraser/SettingsPanel.cs
r1681 r1768 243 243 defaults), S._("Eraser"), MessageBoxButtons.OK, MessageBoxIcon.Warning, 244 244 MessageBoxDefaultButton.Button1, 245 S.IsRightToLeft(this) ? MessageBoxOptions.RtlReading : 0); 245 S.IsRightToLeft(this) ? 246 MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign : 0); 246 247 saveSettings_Click(null, null); 247 248 } … … 286 287 MessageBox.Show(this, S._("The path you selected is invalid."), S._("Eraser"), 287 288 MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1, 288 S.IsRightToLeft(this) ? MessageBoxOptions.RtlReading : 0); 289 S.IsRightToLeft(this) ? 290 MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign : 0); 289 291 } 290 292 } … … 367 369 "the next time Eraser is started."), S._("Eraser"), MessageBoxButtons.OK, 368 370 MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, 369 S.IsRightToLeft(this) ? MessageBoxOptions.RtlReading : 0); 371 S.IsRightToLeft(this) ? 372 MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign : 0); 370 373 } 371 374 … … 409 412 "Eraser is restarted."), S._("Eraser"), MessageBoxButtons.OK, 410 413 MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, 411 S.IsRightToLeft(this) ? MessageBoxOptions.RtlReading : 0); 414 S.IsRightToLeft(this) ? 415 MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign : 0); 412 416 } 413 417 settings.IntegrateWithShell = uiContextMenu.Checked; … … 425 429 S._("Eraser"), MessageBoxButtons.OK, MessageBoxIcon.Information, 426 430 MessageBoxDefaultButton.Button1, 427 S.IsRightToLeft(this) ? MessageBoxOptions.RtlReading : 0); 431 S.IsRightToLeft(this) ? 432 MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign : 0); 428 433 managerSettings.ActivePrng = newPRNG.Guid; 429 434 }
Note: See TracChangeset
for help on using the changeset viewer.
