mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
Customize TV guide display (#443)
Adds a view options button for the TV guide to allow some basic customization: * Show details header * Adjust how channels are sorted * Toggle color coding for programs Related to #250 Closes #288 Fixes #439
This commit is contained in:
parent
0d8800863b
commit
6edcfb1067
10 changed files with 456 additions and 23 deletions
|
|
@ -125,6 +125,13 @@ message SubtitlePreferences{
|
|||
int32 edge_thickness = 12;
|
||||
}
|
||||
|
||||
message LiveTvPreferences {
|
||||
bool show_header = 1;
|
||||
bool favorite_channels_at_beginning = 2;
|
||||
bool sort_by_recently_watched = 3;
|
||||
bool color_code_programs = 4;
|
||||
}
|
||||
|
||||
message InterfacePreferences {
|
||||
ThemeSongVolume play_theme_songs = 1;
|
||||
bool remember_selected_tab = 2;
|
||||
|
|
@ -133,6 +140,7 @@ message InterfacePreferences {
|
|||
bool nav_drawer_switch_on_focus = 5;
|
||||
bool show_clock = 6;
|
||||
SubtitlePreferences subtitles_preferences = 7;
|
||||
LiveTvPreferences live_tv_preferences = 8;
|
||||
}
|
||||
|
||||
message AdvancedPreferences {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue