Add a default title to the TreeViewer dialog

This commit is contained in:
Sam Harwell 2013-05-01 22:38:36 -05:00
parent 2fe7804ee3
commit a7d2838838
1 changed files with 1 additions and 0 deletions

View File

@ -299,6 +299,7 @@ public class TreeViewer extends JComponent {
@NotNull
protected static JDialog showInDialog(final TreeViewer viewer) {
final JDialog dialog = new JDialog();
dialog.setTitle("Parse Tree Inspector");
// Make new content panes
final Container mainPane = new JPanel(new BorderLayout(5,5));