diff --git a/Src/LexText/Interlinear/FocusBoxController.cs b/Src/LexText/Interlinear/FocusBoxController.cs index d53d325c65..8799507b78 100644 --- a/Src/LexText/Interlinear/FocusBoxController.cs +++ b/Src/LexText/Interlinear/FocusBoxController.cs @@ -200,6 +200,9 @@ private void AdjustControlsForRightToLeftWritingSystem(Sandbox sandbox) btnUndoChanges.Anchor = AnchorStyles.Left; btnUndoChanges.Location = new Point( btnConfirmChanges.Width + btnConfirmChangesForWholeText.Width, btnUndoChanges.Location.Y); + btnBreakPhrase.Anchor = AnchorStyles.Left; + btnBreakPhrase.Location = new Point( + btnConfirmChanges.Width + btnConfirmChangesForWholeText.Width + btnUndoChanges.Width, btnBreakPhrase.Location.Y); btnMenu.Anchor = AnchorStyles.Right; btnMenu.Location = new Point(panelControlBar.Width - btnMenu.Width, btnMenu.Location.Y); }