diff options
author | Keith Packard <keithp@keithp.com> | 2015-02-07 17:49:39 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-02-07 17:49:39 -0800 |
commit | 0dd733efdbb66535889aafecbba45f49266ed886 (patch) | |
tree | f57301d96cea9f36850d9df4f1b7b8ae9fd0fcd9 /altosuilib | |
parent | 9d5a6914982a29d22103e0202735c9e01ee9e831 (diff) |
altosuilib: Set the icon and title of the telemetry scanning dialog
Just need to call 'super' to get the window configured correctly.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosuilib')
-rw-r--r-- | altosuilib/AltosScanUI.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/altosuilib/AltosScanUI.java b/altosuilib/AltosScanUI.java index bfe7ef36..59831461 100644 --- a/altosuilib/AltosScanUI.java +++ b/altosuilib/AltosScanUI.java @@ -444,6 +444,7 @@ public class AltosScanUI } public AltosScanUI(AltosUIFrame in_owner, boolean in_select_telemetry) { + super(in_owner, "Scan Telemetry", false); owner = in_owner; select_telemetry = in_select_telemetry; |