This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jtimer. See https://gitlab.nuiton.org/chorem/jtimer.git commit beb748caf1c0bf3eb149e02fb0a8d7b2b6bf60ff Author: Eric Chatellier <chatellier@codelutin.com> Date: Wed Mar 16 16:58:08 2016 +0100 refs: #1319: Fix dialog non resizable --- src/main/java/org/chorem/jtimer/ui/widget/DialogView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/chorem/jtimer/ui/widget/DialogView.java b/src/main/java/org/chorem/jtimer/ui/widget/DialogView.java index 74ec610..0c7c687 100644 --- a/src/main/java/org/chorem/jtimer/ui/widget/DialogView.java +++ b/src/main/java/org/chorem/jtimer/ui/widget/DialogView.java @@ -56,6 +56,7 @@ public class DialogView extends View { dialog = new JDialog(owner, title); dialog.setName(MAIN_DIALOG_NAME); + dialog.setResizable(false); dialog.setModal(true); if (resourceMap.containsKey(KEY_APPLICATION_ICON)) { Image icon = resourceMap.getImageIcon(KEY_APPLICATION_ICON).getImage(); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.