diff options
author | Keith Packard <keithp@keithp.com> | 2011-08-22 18:24:54 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-22 18:24:54 -0700 |
commit | 4e2fd7ae76c23aa8da1390ebcbd8f45276cd7a32 (patch) | |
tree | a85133bca11f96a52b5c418089e362c2074be70b /altosui/AltosUI.java | |
parent | f4ea46dc205454411c224ada7805f813989efd4a (diff) |
altosui: Show filename in AltosGraph window
Makes it easier to tell multiple windows apart
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r-- | altosui/AltosUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index b2c5107e..0317f569 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -311,7 +311,7 @@ public class AltosUI extends JFrame { if (record_reader == null) return; try { - new AltosGraphUI(record_reader); + new AltosGraphUI(record_reader, chooser.filename()); } catch (InterruptedException ie) { } catch (IOException ie) { } |