summarylogtreecommitdiffstats
path: root/linux-get-scroll-info.patch
diff options
context:
space:
mode:
Diffstat (limited to 'linux-get-scroll-info.patch')
-rw-r--r--linux-get-scroll-info.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/linux-get-scroll-info.patch b/linux-get-scroll-info.patch
deleted file mode 100644
index c9b5659695f6..000000000000
--- a/linux-get-scroll-info.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/ReClass.NET/UI/ScrollableCustomControl.cs b/ReClass.NET/UI/ScrollableCustomControl.cs
-index 4de6a4d..e5c05b7 100644
---- a/ReClass.NET/UI/ScrollableCustomControl.cs
-+++ b/ReClass.NET/UI/ScrollableCustomControl.cs
-@@ -2,6 +2,7 @@
- using System.Diagnostics.Contracts;
- using System.Runtime.InteropServices;
- using System.Windows.Forms;
-+using ReClassNET.Native;
-
- namespace ReClassNET.UI
- {
-@@ -213,7 +214,7 @@ namespace ReClassNET.UI
- case ScrollEventType.ThumbTrack:
- case ScrollEventType.ThumbPosition:
-
-- if (GetScrollInfo(new HandleRef(this, Handle), bar, scrollinfo))
-+ if (!NativeMethods.IsUnix() && GetScrollInfo(new HandleRef(this, Handle), bar, scrollinfo))
- {
- SetValue(type, scrollProperties, scrollinfo.nTrackPos);
- }