barcode window always on top

android-scanner
Laura Radaelli 2016-12-08 13:13:07 +02:00
parent 71076f5c7e
commit 971db5d89c
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ public class VoteHaveBeenCastController extends TwoWayNode {
BufferedImage bi = ImageIO.read(new File(filename));
frame.add(new JLabel(new ImageIcon(bi)));
frame.pack();
frame.setAlwaysOnTop(true);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}