From 2a1dbcae9f3ec4fef28309e154e874e16f7301da Mon Sep 17 00:00:00 2001 From: Supremicus Date: Sun, 25 Jan 2015 09:46:13 +1000 Subject: [PATCH] displayShow tweaks * Fix displayShow topmenu variable to point to a valid menu item * Change displayShow scene exception separator to a comma for neater appearance --- CHANGES.md | 2 ++ gui/slick/interfaces/default/displayShow.tmpl | 11 +++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 493e584..21d173e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -15,6 +15,8 @@ * Fix provider list color * Add handling of exceptional case with missing network name (NoneType) in Episode View * Fix black and white list initialization on new show creation +* Fix displayShow topmenu variable to point to a valid menu item +* Change displayShow scene exception separator to a comma for neater appearance [develop changelog] diff --git a/gui/slick/interfaces/default/displayShow.tmpl b/gui/slick/interfaces/default/displayShow.tmpl index 524ea30..11096ea 100644 --- a/gui/slick/interfaces/default/displayShow.tmpl +++ b/gui/slick/interfaces/default/displayShow.tmpl @@ -7,11 +7,10 @@ #import os.path, os #import datetime -#set global $title=$show.name -##set global $header = '' % -#set global $topmenu="manageShows"# -#set $exceptions_string = " | ".join($show.exceptions) -#include $os.path.join($sickbeard.PROG_DIR, "gui/slick/interfaces/default/inc_top.tmpl") +#set global $title = $show.name +#set global $topmenu = 'home' +#set $exceptions_string = ', '.join($show.exceptions) +#include $os.path.join($sickbeard.PROG_DIR, 'gui/slick/interfaces/default/inc_top.tmpl') @@ -492,4 +491,4 @@ -#include $os.path.join($sickbeard.PROG_DIR,"gui/slick/interfaces/default/inc_bottom.tmpl") +#include $os.path.join($sickbeard.PROG_DIR, 'gui/slick/interfaces/default/inc_bottom.tmpl')