From 12c81d9a6706bd9f1b632be029bd12f4b34dcbe6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 25 Oct 2019 11:54:25 -0600 Subject: [PATCH] add another DEBUG_TRACE line --- gtk2_ardour/plugin_scan_dialog.cc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/plugin_scan_dialog.cc b/gtk2_ardour/plugin_scan_dialog.cc index bddc5e5d91..67d720045f 100644 --- a/gtk2_ardour/plugin_scan_dialog.cc +++ b/gtk2_ardour/plugin_scan_dialog.cc @@ -170,6 +170,8 @@ PluginScanDialog::plugin_scan_timeout (int timeout) void PluginScanDialog::message_handler (std::string type, std::string plugin, bool can_cancel) { + DEBUG_TRACE (DEBUG::GuiStartup, string_compose (X_("plugin scan message: %1 cancel? %2\n"), type, can_cancel)); + if (type == X_("closeme") && !is_mapped()) { return; } @@ -194,8 +196,10 @@ PluginScanDialog::message_handler (std::string type, std::string plugin, bool ca hide(); connections.drop_connections (); } else { - message.set_text (type + ": " + Glib::path_get_basename(plugin)); - show(); + if (verbose) { + message.set_text (type + ": " + Glib::path_get_basename(plugin)); + show(); + } } if (!can_cancel || !cancelled) {