R. Lahaye> Some windows seem to be resizeable, while others are not.
R. Lahaye> This appears strange to me. For example:

R. Lahaye> The window for inserting cross-references is resizeable.
R. Lahaye> The window for inserting citation-references is not (which
R. Lahaye> is a problem when wanting a better view of long ref-id's)

R. Lahaye> Can I change this behaviour by setting compile options
R. Lahaye> or is it a matter of replacing xforms support by something
R. Lahaye> better in the future?

This is due simply to inconsistent coding by me! The following patch fixes it.
(Could someone apply this please?)
Angus

Index: src/insets/insetcite.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetcite.C,v
retrieving revision 1.2
diff -u -r1.2 insetcite.C
--- src/insets/insetcite.C      2000/06/12 11:27:13     1.2
+++ src/insets/insetcite.C      2000/06/20 10:17:05
@@ -180,7 +180,8 @@
                fl_raise_form( citation_form->form );
        } else {
                fl_show_form( citation_form->form,
-                             FL_PLACE_MOUSE, FL_FULLBORDER,
+                             FL_PLACE_MOUSE | FL_FREE_SIZE,
+                             FL_FULLBORDER,
                              _("Citation") );
        }
 }

Reply via email to