From 81a2653b550f60b570d0356532b080ded2fcaa32 Mon Sep 17 00:00:00 2001 From: Ilari Liusvaara Date: Sat, 7 Aug 2010 08:59:54 +0300 Subject: [PATCH] Properly name Monitor Panel thread The monitor panel thread was called Thread-3. Give proper name for it. --- Changelog.utf8 | 1 + org/jpc/pluginsaux/PCMonitorPanel.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog.utf8 b/Changelog.utf8 index 8c2f353..a18a19a 100644 --- a/Changelog.utf8 +++ b/Changelog.utf8 @@ -33,6 +33,7 @@ Changes since JPC-RR Release 10.5: - Merge some fixes from r10 maint branch. - Support resetting pixel panning on line compare. - Prevent races in HUDRenderer. +- Properly name Monitor Panel thread. Changes since JPC-RR Release 10.14: =================================== diff --git a/org/jpc/pluginsaux/PCMonitorPanel.java b/org/jpc/pluginsaux/PCMonitorPanel.java index 1c60c40..9ca6b53 100644 --- a/org/jpc/pluginsaux/PCMonitorPanel.java +++ b/org/jpc/pluginsaux/PCMonitorPanel.java @@ -243,7 +243,7 @@ public class PCMonitorPanel implements ActionListener public void startThread() { - (new Thread(new Runnable() { public void run() { main(); }})).start(); + (new Thread(new Runnable() { public void run() { main(); }}, "Monitor Panel Thread")).start(); } public void main() -- 2.11.4.GIT