We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6661ad commit ee74e3cCopy full SHA for ee74e3c
src/Flow.Launcher.Plugin.ClipboardPlus.Core/Data/Models/Clipboard/ClipboardHandleW.cs
@@ -11,7 +11,6 @@
11
using Windows.Win32;
12
using Windows.Win32.Foundation;
13
using Application = System.Windows.Application;
14
-using Clipboard = System.Windows.Clipboard;
15
using DataFormats = System.Windows.DataFormats;
16
using IDataObject = System.Windows.IDataObject;
17
@@ -192,7 +191,7 @@ private async void OnClipboardChanged()
192
191
await Win32Helper.StartSTATaskAsync(() =>
193
{
194
// If the clipboard is empty, return.
195
- var dataObj = Clipboard.GetDataObject();
+ var dataObj = System.Windows.Clipboard.GetDataObject();
196
if (dataObj is null)
197
198
return;
0 commit comments