Skip to content

Commit

Permalink
Fix: remove tooltip from header, because it somehow hangs becqmoni pr…
Browse files Browse the repository at this point in the history
…ocess on exit.
  • Loading branch information
Am6er committed Oct 3, 2024
1 parent 16a86db commit 6c50b95
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions BecquerelMonitor/DocEnergySpectrum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -344,11 +344,6 @@ private void SetupSaveDocumentButtons()
this.toolStripSaveButton.Enabled = this.Dirty;
}

private void SetupDocumentTextWithDirtyFlag()
{
DocumentTextWithDirtyFlag();
}

private void View_ActionEvent(object sender, EnergySpectrumActionEventArgs e)
{
decimal value = e.NewScaleValue;
Expand Down Expand Up @@ -379,7 +374,6 @@ private void DocumentTextWithDirtyFlag()
{
this.Text = text;
}
this.ToolTipText = this.Text;
}

// Token: 0x06000321 RID: 801 RVA: 0x0000FA10 File Offset: 0x0000DC10
Expand Down Expand Up @@ -541,7 +535,7 @@ public void RefreshView()
this.view.PrepareViewData();
this.SetupBGAffinityButtons();
this.SetupSaveDocumentButtons();
this.SetupDocumentTextWithDirtyFlag();
this.DocumentTextWithDirtyFlag();
this.view.RecalcScrollBar();
this.view.Invalidate();
}
Expand Down

0 comments on commit 6c50b95

Please sign in to comment.