From ffe6d3361bfac542052bc913439e284cc2a66183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Sat, 4 Sep 2010 22:13:18 +0200 Subject: [PATCH] TracksControl: Make the effectstack a child dialog. This prevents the dialog from staying opened with the application closed. --- src/Gui/widgets/TrackControls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/widgets/TrackControls.cpp b/src/Gui/widgets/TrackControls.cpp index d0c221d9f..cd032ffc7 100644 --- a/src/Gui/widgets/TrackControls.cpp +++ b/src/Gui/widgets/TrackControls.cpp @@ -133,6 +133,6 @@ TrackControls::trackNameDoubleClicked() void TrackControls::fxButtonClicked() { - EffectStack *stack = new EffectStack( m_track->trackWorkflow() ); + EffectStack *stack = new EffectStack( m_track->trackWorkflow(), this ); stack->show(); } -- GitLab