We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e65288d commit f9ed4dfCopy full SHA for f9ed4df
.idea/uiDesigner.xml
src/main/java/com/Polodz/View/MainWindow.java
@@ -173,9 +173,12 @@ public void keyPressed(KeyEvent e) {
173
btnNewButton_3 = new JButton("Audit");
174
btnNewButton_3.addActionListener(new ActionListener() {
175
public void actionPerformed(ActionEvent e) {
176
-
177
- setCentralText(mainController.getAuditRaport());
178
+ Thread t1 = new Thread(new Runnable() {
+ public void run()
+ {
179
+ setCentralText(mainController.getAuditRaport());// code goes here.
180
+ }});
181
+ t1.start();
182
}
183
});
184
getContentPane().add(btnNewButton_3, "cell 3 1");
0 commit comments