From 83aa785c57d9f209b6f0e730f447cc0d9481652c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 25 May 2019 13:44:37 +0200 Subject: [PATCH] GSlider: Oops, fix typo in previous commit. --- LibGUI/GSlider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGUI/GSlider.cpp b/LibGUI/GSlider.cpp index ca532bf456..97546c8f82 100644 --- a/LibGUI/GSlider.cpp +++ b/LibGUI/GSlider.cpp @@ -123,7 +123,7 @@ void GSlider::leave_event(CEvent& event) void GSlider::change_event(GEvent& event) { if (event.type() == GEvent::Type::EnabledChange) { - if (!is_enabled())) + if (!is_enabled()) m_dragging = false; } GWidget::change_event(event);