Skip to content

Commit 1d49c2b

Browse files
committed
Added option to disable tooltips.
1 parent 10fb3dd commit 1d49c2b

File tree

8 files changed

+172
-100
lines changed

8 files changed

+172
-100
lines changed

Source/App.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
<setting name="Upgraded" serializeAs="String">
3535
<value>False</value>
3636
</setting>
37+
<setting name="Tooltips" serializeAs="String">
38+
<value>True</value>
39+
</setting>
3740
</ScriptFUSION.UpDown_Meter.Properties.Settings>
3841
</userSettings>
3942
</configuration>

Source/Forms/NetGraphForm.Designer.cs

Lines changed: 74 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/Forms/NetGraphForm.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ private void SyncSamplerOptions(Options options) {
103103
private void SyncUiOptions(Options options) {
104104
if (options.Topmost && !topmost.Selected) topmost.SimulateClick();
105105
if (options.Transparent && !transparent.Selected) transparent.SimulateClick();
106+
107+
toolTip.Active = options.Tooltips;
106108
}
107109

108110
private void UpdateStats() {

0 commit comments

Comments
 (0)