diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-12-22 07:23:32 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-12-22 07:23:32 +0100 |
commit | f515762bbcdd3ed916a958d64614d501eadb2f3d (patch) | |
tree | e9613f6c6e85ab10ee6238e44d6e8ce1675231c3 /lib/DBInfoscreen/Controller/Stationboard.pm | |
parent | 424adc28295d8d086a9a6d30ea2121dd9993e203 (diff) |
show footer (but not opts) in some places
Diffstat (limited to 'lib/DBInfoscreen/Controller/Stationboard.pm')
-rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index a5bc063..1a6d560 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -1796,6 +1796,7 @@ sub handle_efa { title => $efa->stop->name // $station_name, refresh_interval => $template eq 'app' ? 0 : 120, hide_opts => $hide_opts, + hide_footer => $hide_opts, hide_low_delay => $hide_low_delay, show_realtime => $show_realtime, load_marquee => ( @@ -2304,6 +2305,7 @@ sub handle_result { title => $via ? "$station_name → $via" : $station_name, refresh_interval => $template eq 'app' ? 0 : 120, hide_opts => $hide_opts, + hide_footer => $hide_opts, hide_low_delay => $hide_low_delay, show_realtime => $show_realtime, load_marquee => ( @@ -2524,7 +2526,8 @@ sub backend_list { $self->render( 'select_backend', backends => \@backends, - hide_opts => 1 + hide_opts => 1, + hide_footer => 1 ); } |