ExportDisplayAction: hardcoded title for the file chooser
Status: Beta
Brought to you by:
jheer
The ExportDisplayAction has a hardcoded title for the file chooser.
It is currently "Export Prefuse Display...".
Suggested workaround:
Change the line in the init() method:
change: chooser.setDialogTitle("Export Prefuse Display...");
to: chooser.setDialogTitle(PrefuseConfig.get("ExportDisplayAction.fileChooser.title"));
This way it can be configured in the prefuse.conf file.
I tried it and it works fine.