mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
Plugin-scan: display module/bundle name without file extension
This commit is contained in:
parent
6e6eb4c13e
commit
c4bc3b00d2
1 changed files with 3 additions and 1 deletions
|
|
@ -24,6 +24,8 @@
|
||||||
|
|
||||||
#include <gtkmm/progressbar.h>
|
#include <gtkmm/progressbar.h>
|
||||||
|
|
||||||
|
#include "pbd/basename.h"
|
||||||
|
|
||||||
#include "ardour/plugin_manager.h"
|
#include "ardour/plugin_manager.h"
|
||||||
|
|
||||||
#include "ardour_ui.h"
|
#include "ardour_ui.h"
|
||||||
|
|
@ -201,7 +203,7 @@ PluginScanDialog::message_handler (std::string type, std::string plugin, bool ca
|
||||||
hide();
|
hide();
|
||||||
connections.drop_connections ();
|
connections.drop_connections ();
|
||||||
} else {
|
} else {
|
||||||
message.set_text (type + ": " + Glib::path_get_basename(plugin));
|
message.set_text (type + ": " + PBD::basename_nosuffix (plugin));
|
||||||
show();
|
show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue