Revert "Merge pull request #5540 from Craftplacer/master"

This reverts commit e607cc481e, reversing
changes made to 7f88c8c75f.
This commit is contained in:
Jaex 2021-04-30 06:34:23 +03:00
parent 0b36be3037
commit c8f0eb80fa

View file

@ -26,7 +26,6 @@
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);
}