* Reduce some of the calendar editor elements to prevent them from overflowing the...
authorArt Cancro <ajc@citadel.org>
Wed, 21 Jan 2009 16:33:29 +0000 (16:33 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 21 Jan 2009 16:33:29 +0000 (16:33 +0000)
webcit/event.c

index fbc2614a39d745e17ad831146d5a3a97e2059393..2ece06d1c535ce44219d31a33a889d327e87300b 100644 (file)
@@ -262,7 +262,7 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum,
        wprintf(_("Notes"));
        wprintf("</B></TD><TD>\n"
                "<TEXTAREA NAME=\"description\" wrap=soft "
-               "ROWS=5 COLS=80 WIDTH=80>\n"
+               "ROWS=5 COLS=72 WIDTH=72>\n"
        );
        p = icalcomponent_get_first_property(vevent, ICAL_DESCRIPTION_PROPERTY);
        if (p != NULL) {
@@ -388,7 +388,7 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum,
 
        wprintf("</TD><TD>"
                "<TEXTAREA %s NAME=\"attendees\" id=\"attendees_box\" wrap=soft "
-               "ROWS=3 COLS=80 WIDTH=80>\n",
+               "ROWS=10 COLS=72 WIDTH=72>\n",
                (organizer_is_me ? "" : "DISABLED ")
        );
        i = 0;