Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 6d2bbbc

Browse files
committed
search window now starts in the top right corner of the text editor
1 parent 5b64d2f commit 6d2bbbc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

UI/Windows/FindReplaceWindow.xaml.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ public FindReplaceWindow(string searchTerm = "")
3535
ThemeManager.GetAppTheme(Program.OptionsObject.Program_Theme));
3636
}
3737

38+
Left = Program.MainWindow.Left + Program.MainWindow.Width - Program.MainWindow.ObjectBrowserColumn.Width.Value - (Width + 20);
39+
Top = Program.MainWindow.Top + 40;
40+
3841
ReplaceButton.ItemsSource = findReplaceButtonDict;
3942
ReplaceButton.SelectedIndex = 0;
4043
FindBox.Text = searchTerm;

0 commit comments

Comments
 (0)