From c78f1c945ed7c157ea02c3b2b1ed3653f8bfc019 Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Thu, 1 Aug 2024 09:08:18 -0700 Subject: [PATCH] Disable "seek nearby targets" for new projects It's really handy for certain types of programs, but it's a distraction in many others. I find myself turning it off for most things. Some changes will be needed in the tutorial, which makes use of the feature. (The "odds & ends" section discusses it in detail.) I'm putting that off until other changes are in. --- SourceGen/ProjectProperties.cs | 2 +- SourceGen/WpfGui/EditLongComment.xaml.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SourceGen/ProjectProperties.cs b/SourceGen/ProjectProperties.cs index d5900720..b2b073b2 100644 --- a/SourceGen/ProjectProperties.cs +++ b/SourceGen/ProjectProperties.cs @@ -61,7 +61,7 @@ public AnalysisParameters() { AnalyzeUncategorizedData = true; DefaultTextScanMode = TextScanMode.LowHighAscii; MinCharsForString = DataAnalysis.DEFAULT_MIN_STRING_LENGTH; - SeekNearbyTargets = true; + SeekNearbyTargets = false; UseRelocData = false; SmartPlpHandling = false; SmartPlbHandling = true; diff --git a/SourceGen/WpfGui/EditLongComment.xaml.cs b/SourceGen/WpfGui/EditLongComment.xaml.cs index beefc492..c1eef988 100644 --- a/SourceGen/WpfGui/EditLongComment.xaml.cs +++ b/SourceGen/WpfGui/EditLongComment.xaml.cs @@ -212,7 +212,7 @@ private MultiLineComment CreateMLC() { "[width=nn] and [br] are not allowed in boxes, but [hr] and [url] are.\r\n" + "\r\n" + "If fancy mode is disabled, the Line Width and Render In Box controls are enabled,\r\n" + - "and will be used to format the text. Formatting tags are ignored.\r\n"; + "and will be used to format the text. Formatting tags are not recognized.\r\n"; private void FormatHelp_Click(object sender, RoutedEventArgs e) { Tools.WpfGui.ShowText dialog = new Tools.WpfGui.ShowText(this, HELP_TEXT);