fixed an issue causing orderer dialogs desappering behind certain other dealogs.

This commit is contained in:
hneemann 2017-06-30 07:51:43 +02:00
parent fd878a4f7b
commit c1e4656dda

View File

@ -38,6 +38,7 @@ public class ElementOrderer<T> extends JDialog {
super(owner, title, true);
this.data = data;
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
setAlwaysOnTop(true);
listModel = new MyListModel<T>(data);
list = new JList<T>(listModel);