From 7aa1caa5a9ee30a055c4f0bffceae39d913612e3 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 6 May 2024 23:49:05 +0200 Subject: [PATCH] T: No mixer screenshot for trax Unpacking and repacking the mixer needs to be special cased for trax. --- gtk2_ardour/mixer_ui.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index b0e2cfeddf..de4c7647f5 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -4326,6 +4326,9 @@ Mixer_UI::screenshot (std::string const& filename) if (!_session) { return false; } + if (Profile->get_livetrax()) { + return false; + } int height = strip_packer.get_height(); bool with_vca = vca_vpacker.get_visible ();