From 937c8b9d5d539621999ef792088094d40e7bbe8b Mon Sep 17 00:00:00 2001 From: regulus79 <117475203+regulus79@users.noreply.github.com> Date: Sat, 7 Feb 2026 13:57:43 -0500 Subject: [PATCH] Increase Clip Resize Grip Width (#8169) Requested by a user on the forum. Sometimes, it can get tricky when two clips are right next to each other, and you're trying to resize one of them. Either you resize the right one, or the other one starts resizing behind the other, so you end up having to move one over, then resize it, then move it back. And it's just not awesome. However, this can be mitigated by simply increasing the clip resize grip width. Currently, it is at 4 px, but increasing it to 8 px makes it easier to specifically target which clip you want to resize. It also probably makes it easier to resize clips in general for users who may struggle to aim the mouse perfectly within that 4 pixel gap. --- src/gui/clips/ClipView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/clips/ClipView.cpp b/src/gui/clips/ClipView.cpp index 6bc0e28d5..44ff6fd36 100644 --- a/src/gui/clips/ClipView.cpp +++ b/src/gui/clips/ClipView.cpp @@ -58,7 +58,7 @@ namespace lmms::gui /*! The width of the resize grip in pixels */ -const int RESIZE_GRIP_WIDTH = 4; +const int RESIZE_GRIP_WIDTH = 8; /*! A pointer for that text bubble used when moving segments, etc.