Skip to content

Commit

Permalink
Set default value of "Show abbreviation in timetable" to true (#1794)
Browse files Browse the repository at this point in the history
Since most timetable cells are very small, we often don't enough space
to display rooms, teacher, etc. Showing the abbreviations gains more
space, since they always only one line. Here the effect:

| Before | After |
|--------|--------|
|
![3E48F880-F147-4AF0-9DE1-11512806FC53](https://github.com/user-attachments/assets/d95b9b0c-4ce0-4b06-bc60-62b03fc8f38c)
|
![8A84B5CC-7CFA-4A5B-BCD1-688E2F60D6C0](https://github.com/user-attachments/assets/771ed8e1-5ebb-4540-adb6-a9626b3ebb7a)
|

Related to #110
  • Loading branch information
nilsreichardt authored Nov 15, 2024
1 parent 672f322 commit 97c2a09
Show file tree
Hide file tree
Showing 11 changed files with 1 addition and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/user/lib/src/models/user_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const defaultIsAWeekEvenWeek = true;
final defaultTimetableStartTime = Time(hour: 7, minute: 30);
const defaultPeriods = standardPeriods;
const defaultEnabledWeekDays = EnabledWeekDays.standard;
const defaultShowAbbreviation = false;
const defaultShowAbbreviation = true;

class UserSettings {
final Time timetableStartTime;
Expand Down

0 comments on commit 97c2a09

Please sign in to comment.