Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added some suggestions from CvH
  • Loading branch information
Glenn-1990 authored and perexg committed Oct 20, 2016
1 parent 1453405 commit a54db94
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/input/mpegts/mpegts_mux.c
Expand Up @@ -612,7 +612,7 @@ const idclass_t mpegts_mux_class =
.off = offsetof(mpegts_mux_t, mm_scan_state),
.set = mpegts_mux_class_scan_state_set,
.list = mpegts_mux_class_scan_state_enum,
.opts = PO_NOSAVE | PO_SORTKEY | PO_DOC_NLIST,
.opts = PO_ADVANCED | PO_NOSAVE | PO_SORTKEY | PO_DOC_NLIST,
},
{
.type = PT_INT,
Expand Down Expand Up @@ -656,7 +656,7 @@ const idclass_t mpegts_mux_class =
.id = "tsid_zero",
.name = N_("Accept zero value for TSID"),
.off = offsetof(mpegts_mux_t, mm_tsid_accept_zero_value),
.opts = PO_ADVANCED
.opts = PO_EXPERT
},
{
.type = PT_INT,
Expand Down
2 changes: 1 addition & 1 deletion src/input/mpegts/mpegts_mux_dvb.c
Expand Up @@ -493,7 +493,7 @@ const idclass_t dvb_mux_dvbs_class =
MUX_PROP_STR("pls_mode", N_("PLS mode"), dvbs, pls_mode, "ROOT"),
.desc = N_("The Physical Layer Scrambling (PLS) mode "
"used on the mux."),
.opts = PO_ADVANCED,
.opts = PO_EXPERT,
},
{
.type = PT_U32,
Expand Down
2 changes: 1 addition & 1 deletion src/timeshift.c
Expand Up @@ -267,7 +267,7 @@ const idclass_t timeshift_conf_class = {
.name = N_("RAM only"),
.desc = N_("Only use system RAM for timeshift buffers."),
.off = offsetof(timeshift_conf_t, ram_only),
.opts = PO_EXPERT,
.opts = PO_ADVANCED,
},
{
.type = PT_BOOL,
Expand Down
2 changes: 1 addition & 1 deletion src/webui/static/app/config.js
Expand Up @@ -108,7 +108,7 @@ tvheadend.imgcacheconf = function(panel, index) {
title: _('Image Cache'),
iconCls: 'imgcacheconf',
tabIndex: index,
uilevel: 'advanced',
uilevel: 'expert',
comet: 'imagecache',
width: 550,
labelWidth: 200,
Expand Down
2 changes: 1 addition & 1 deletion src/webui/static/app/tvheadend.js
Expand Up @@ -777,7 +777,7 @@ function accessUpdate(o) {
tvheadend.caclient(cp, 6);

/* Debug */
if (o.uilevel == 'expert') {
if (o.uilevel == 'advanced' || o.uilevel == 'expert') {
var dbg = new Ext.TabPanel({
tabIndex: 7,
activeTab: 0,
Expand Down
1 change: 1 addition & 0 deletions src/webui/static/app/tvhlog.js
Expand Up @@ -36,6 +36,7 @@ tvheadend.memoryinfo = function(panel, index)
titleP: _('Memory Information Entries'),
iconCls: 'exclamation',
tabIndex: index,
uilevel: 'expert',
readonly: true
});
};

0 comments on commit a54db94

Please sign in to comment.