Skip to content

Commit 716a50d

Browse files
committed
Student Scheduling Dashboard: Student Dialog
- Course Requests: Preferences column changed to allow word wrap
1 parent a3199ab commit 716a50d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

JavaSource/org/unitime/timetable/gwt/client/sectioning/StudentSchedule.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public StudentSchedule(boolean online) {
139139
new WebTable.Cell(MESSAGES.colCourse(), 1, "75px"),
140140
new WebTable.Cell(MESSAGES.colTitle(), 1, "200px"),
141141
new WebTable.Cell(MESSAGES.colCredit(), 1, "20px"),
142-
new WebTable.Cell(MESSAGES.colPreferences(), 1, "100px"),
142+
new WebTable.Cell(MESSAGES.colPreferences(), 1, "300px"),
143143
new WebTable.Cell(MESSAGES.colWarnings(), 1, "200px"),
144144
new WebTable.Cell(MESSAGES.colStatus(), 1, "20px"),
145145
new WebTable.Cell(MESSAGES.colCritical(), 1, "20px"),
@@ -767,7 +767,7 @@ protected void fillInRequests() {
767767
new WebTable.Cell(rc.getCourseName()),
768768
new WebTable.Cell(rc.hasCourseTitle() ? rc.getCourseTitle() : ""),
769769
credit,
770-
new WebTable.Cell(ToolBox.toString(prefs)),
770+
new WebTable.Cell(ToolBox.toString(prefs), true),
771771
new WebTable.NoteCell(note, noteTitle),
772772
(icon == null ? new WebTable.Cell(status) : new WebTable.IconCell(icon, iconText, status)),
773773
(first && iAssignment.isCanSetCriticalOverrides() ? new CriticalCell(request) : first && request.isCritical() ? new WebTable.IconCell(RESOURCES.requestsCritical(), MESSAGES.descriptionRequestCritical(), MESSAGES.opSetCritical()) :
@@ -898,7 +898,7 @@ protected void fillInRequests() {
898898
new WebTable.Cell(rc.getCourseName()),
899899
new WebTable.Cell(rc.hasCourseTitle() ? rc.getCourseTitle() : ""),
900900
credit,
901-
new WebTable.Cell(ToolBox.toString(prefs)),
901+
new WebTable.Cell(ToolBox.toString(prefs), true),
902902
new WebTable.NoteCell(note, noteTitle),
903903
(icon == null ? new WebTable.Cell(status) : new WebTable.IconCell(icon, iconText, status)),
904904
(first && iAssignment.isCanSetCriticalOverrides() ? new CriticalCell(request) : first && request.isCritical() ? new WebTable.IconCell(RESOURCES.requestsCritical(), MESSAGES.descriptionRequestCritical(), MESSAGES.opSetCritical()) :

0 commit comments

Comments
 (0)