[update/ui] Update the details dialog size and return it to be unresizable

This commit is contained in:
Anas Elgarhy 2023-05-25 23:15:15 +03:00
parent c213150c49
commit 5cf3890c02
No known key found for this signature in database
GPG Key ID: 0501802A1D496528
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ public class AyahDetailsDialog extends JDialog implements PlayerListener {
setContentPane(contentPane);
setModal(true);
setSize(500, 300);
// setResizable(false);
setSize(520, 320);
setResizable(false);
setLocationRelativeTo(null);
getRootPane().setDefaultButton(playButton);