We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10d71d1 commit e26f6eaCopy full SHA for e26f6ea
1 file changed
Src/xWorks/GeneratedHtmlViewer.cs
@@ -228,6 +228,11 @@ private void InitHtmlControl()
228
229
private void Find_Click(object sender, EventArgs e)
230
{
231
+ if (m_sHtmlFileName == InitialDocument)
232
+ {
233
+ // InitialDocument doesn't have the proper javascript for Find to work.
234
+ return;
235
+ }
236
findDlg = new FindDialog(m_htmlControl.Browser);
237
findDlg.FormClosing += new FormClosingEventHandler(FindDialog_FormClosing);
238
findDlg.Show(this);
0 commit comments