Skip to content

Commit c6cede0

Browse files
authored
Merge pull request #2832 from comintern/next
Fix the hyperlink Ooops, NRE on DeclarationFinder if parser hasn't run.
2 parents 9d8ccc2 + 04acb7c commit c6cede0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

RetailCoder.VBE/UI/Controls/BindableTextEditor.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ public BindableTextEditor()
2424
TextArea.TextView.LinkTextUnderline = false;
2525
TextArea.TextView.LinkTextForegroundBrush = new SolidColorBrush(Colors.Green);
2626
Options.RequireControlModifierForHyperlinkClick = false;
27-
Options.EnableHyperlinks = true;
27+
//This needs some work if hyperlinks need to open in an external browser.
28+
Options.EnableHyperlinks = false;
2829
Options.EnableEmailHyperlinks = true;
2930
}
3031

RetailCoder.VBE/UI/Settings/IndenterSettings.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
</StackPanel>
297297
</Expander>
298298
<Expander Grid.Row="4"
299-
IsExpanded="False"
299+
IsExpanded="True"
300300
Background="#FFFFFFFF"
301301
BorderBrush="#FFA9A9A9"
302302
Margin="0,0,0,3">

0 commit comments

Comments
 (0)