mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-07-11 22:59:14 +00:00
Small bug fix and added option to disable the invite feature
This commit is contained in:
@ -1,12 +1,5 @@
|
||||
using SDRSharp.Radio;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace EnderIce2.SDRSharpPlugin
|
||||
@ -18,17 +11,17 @@ namespace EnderIce2.SDRSharpPlugin
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
private void Button2_Click(object sender, EventArgs e)
|
||||
{
|
||||
System.Diagnostics.Process.Start("https://ko-fi.com/enderice2");
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
private void Button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
private void checkBox1_CheckedChanged(object sender, EventArgs e)
|
||||
private void CheckBox1_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
Utils.SaveSetting("ShowWelcomePage", !checkBox1.Checked);
|
||||
}
|
||||
|
Reference in New Issue
Block a user