diff --git a/ShareX/Forms/NotificationForm.cs b/ShareX/Forms/NotificationForm.cs index 3fcd6fca5..60298c4f5 100644 --- a/ShareX/Forms/NotificationForm.cs +++ b/ShareX/Forms/NotificationForm.cs @@ -26,7 +26,6 @@ You should have received a copy of the GNU General Public License using ShareX.HelpersLib; using System; using System.Drawing; -using System.IO; using System.Windows.Forms; namespace ShareX @@ -362,15 +361,6 @@ private void NotificationForm_MouseLeave(object sender, EventArgs e) } } - private void NotificationForm_MouseDown(object sender, MouseEventArgs e) - { - if (!string.IsNullOrEmpty(Config.FilePath) && File.Exists(Config.FilePath)) - { - IDataObject dataObject = new DataObject(DataFormats.FileDrop, new string[] { Config.FilePath }); - DoDragDrop(dataObject, DragDropEffects.Copy | DragDropEffects.Move); - } - } - #region Windows Form Designer generated code private Timer tDuration; @@ -422,7 +412,6 @@ private void InitializeComponent() MouseClick += new MouseEventHandler(NotificationForm_MouseClick); MouseEnter += new EventHandler(NotificationForm_MouseEnter); MouseLeave += new EventHandler(NotificationForm_MouseLeave); - MouseDown += new MouseEventHandler(NotificationForm_MouseDown); ResumeLayout(false); }