changeset 56:edfeca7d5b45

TabColumns: Ability to rename Column Set
author Fox
date Sat, 17 Dec 2022 14:14:00 +0100
parents 154c07f4c23c
children 99958b2e2a5a
files src/junotu/TabColumns.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/junotu/TabColumns.java	Wed Dec 14 17:01:00 2022 +0100
+++ b/src/junotu/TabColumns.java	Sat Dec 17 14:14:00 2022 +0100
@@ -396,7 +396,7 @@
     }
 
     long columnsCard;
-    JLabel title;
+    JTextField title;
     Box columns;
     JScrollPane scroll;
 
@@ -406,7 +406,7 @@
     {
 	this.setLayout( new BorderLayout() );
 
-	title = new JLabel("");
+	title = new JTextField("");
 	addColumn = new JButton("+");
 	JPanel top = new JPanel();
 	columns = Box.createHorizontalBox();