From 17d400c4429271c574430cccb231208e6647e6ef Mon Sep 17 00:00:00 2001 From: Christoph Heinrich Date: Wed, 20 Jul 2022 02:46:53 +0200 Subject: [PATCH] Fix speed dial crash When dragging the speed dial and letting go over the timeline, `this:fadeout` was called, but that function does not exist. Introduced in 755194352f6eacb3488fd519be6ecbc21137463d --- uosc.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/uosc.lua b/uosc.lua index 52f32fd6..3175d114 100644 --- a/uosc.lua +++ b/uosc.lua @@ -2653,9 +2653,6 @@ if options.speed then end end, on_global_mbtn_left_up = function(this) - if this.dragging and elements.timeline.proximity_raw == 0 then - this:fadeout() - end this.dragging = nil request_render() end,