commit 19/05/2025

This commit is contained in:
2025-05-19 14:09:39 +07:00
parent bc6821a33e
commit 2dfd149990
15 changed files with 4 additions and 4 deletions

View File

@@ -31,8 +31,8 @@ public class MainApplication extends Application {
System.out.println("ShutdownHook Checking running threads...");
Map<Thread, StackTraceElement[]> allThreads = Thread.getAllStackTraces();
for(Thread thread : allThreads.keySet()){
System.out.println("Thread: " + thread.getName()+", State: " + thread.getState()+", Daemon: " + thread.isDaemon());
//thread.interrupt();
//System.out.println("Thread: " + thread.getName()+", State: " + thread.getState()+", Daemon: " + thread.isDaemon());
thread.interrupt();
}
if (photoCleaner!=null) photoCleaner.Stop();
}));
@@ -50,7 +50,7 @@ public class MainApplication extends Application {
Screen screen = Screen.getPrimary();
Rectangle2D screenbound = screen.getBounds();
Scene scene = new Scene(fxmlLoader.load(), screenbound.getWidth(), screenbound.getHeight());
stage.setTitle("MultiCam Capture App for ERHA 13052025-001");
stage.setTitle("MultiCam Capture App for ERHA 19052025-001");
stage.setScene(scene);
stage.setResizable(true);
stage.setMaximized(true);