From: gregor herrmann Date: Wed, 2 Jul 2008 17:52:31 +0000 (-0000) Subject: Add patch 06_forms_groups.patch to fix an exception in the groups X-Git-Tag: debian/2.3.1-4~1 X-Git-Url: http://git.toastfreeware.priv.at/debian/jabref.git/commitdiff_plain/0b20bf17361527ee28e653676e6eb9cffd6944c3?hp=79b68367862fb0499daf639e6c47720a10dec5bb Add patch 06_forms_groups.patch to fix an exception in the groups interface; thanks to Monkey D. Luffy for the bug report and to Philipp Spitzer for helping me to produce a patch (closes: #487481). --- diff --git a/debian/changelog b/debian/changelog index 66b8938..c2963f4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,9 @@ jabref (2.3.1-4) UNRELEASED; urgency=low * debian/rules: remove configure{,-stamp} targets. * Set Standards-Version to 3.8.0; add debian/README.source to document the patch system. + * Add patch 06_forms_groups.patch to fix an exception in the groups + interface; thanks to Monkey D. Luffy for the bug report and to Philipp + Spitzer for helping me to produce a patch (closes: #487481). -- gregor herrmann Fri, 02 May 2008 01:24:18 +0200 diff --git a/debian/patches/06_forms_groups.patch b/debian/patches/06_forms_groups.patch new file mode 100644 index 0000000..2cee192 --- /dev/null +++ b/debian/patches/06_forms_groups.patch @@ -0,0 +1,14 @@ +Author: gregor herrmann +Description: forms 1.2.0 doesn't like empty parameters +Bug: #487481 +--- a/src/java/net/sf/jabref/groups/GroupDialog.java ++++ b/src/java/net/sf/jabref/groups/GroupDialog.java +@@ -182,7 +182,7 @@ + "right:pref, 4dlu, fill:600px, 4dlu, fill:pref", + "p, 3dlu, p, 3dlu, p, 0dlu, p, 0dlu, p, 3dlu, p, 3dlu, p, " + + "0dlu, p, 0dlu, p, 3dlu, p, 3dlu, " +- + "p, 3dlu, p, 3dlu, top:80dlu, 9dlu, p, , 9dlu, p"); ++ + "p, 3dlu, p, 3dlu, top:80dlu, 9dlu, p, 9dlu, p, p"); + + DefaultFormBuilder builderAll = new DefaultFormBuilder(layoutAll); + builderAll.setDefaultDialogBorder(); diff --git a/debian/patches/series b/debian/patches/series index 584970d..a1070da 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -3,3 +3,4 @@ 03_external_apps.patch 04_HONOR_DISPLAY_PROPERTIES.patch 05_antlr.patch +06_forms_groups.patch