setting the dbox > misc settings > EPG info to Advanced dosn't seem to save the setting correctly, if you reboot or restart Neutrino it defaults back to Simple
I noticed the following in Neutrino.cpp
line 678
Code: Alles auswählen
#endif
g_settings.virtual_zap_mode = configfile.getBool("virtual_zap_mode" , false);
g_settings.infobar_show = configfile.getBool("infobar_show" , false);
Code: Alles auswählen
#endif
configfile.setBool("virtual_zap_mode" , g_settings.virtual_zap_mode);
configfile.setBool("infobar_show" , g_settings.infobar_show);
Non working Neutrino.conf
infobar_sat_display=true
infobar_show=true
infobar_subchan_disp_pos=0
So I tried changing to the following and the changes now save..
Code: Alles auswählen
#endif
g_settings.virtual_zap_mode = configfile.getBool("virtual_zap_mode" , false);
g_settings.infobar_show = configfile.getInt32("infobar_show" , 0);
Code: Alles auswählen
#endif
configfile.setBool("virtual_zap_mode" , g_settings.virtual_zap_mode);
configfile.setInt32("infobar_show" , g_settings.infobar_show);
infobar_sat_display=true
infobar_show=2
infobar_subchan_disp_pos=0