13
0

add another DEBUG_TRACE line

This commit is contained in:
Paul Davis 2019-10-25 11:54:25 -06:00
parent faeaf14e3b
commit 12c81d9a67

View File

@ -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) {