mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-23 12:05:44 +01:00
Set progress dialog as resizable
Fixes a bug under Linux where the dialog never resizes, even when the details button is clicked.
This commit is contained in:
parent
9a32ab8dc3
commit
fb7a99549e
@ -50,7 +50,7 @@ public class ProgressDialog extends JDialog {
|
||||
public ProgressDialog(Window owner, String title, String message) {
|
||||
super(owner, title, ModalityType.DOCUMENT_MODAL);
|
||||
|
||||
setResizable(false);
|
||||
setResizable(true);
|
||||
initComponents();
|
||||
label.setText(message);
|
||||
defaultTitle = title;
|
||||
|
Loading…
Reference in New Issue
Block a user