- webchannels/xmltv-setup: extend keyboard input

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2021-10-12 23:04:56 +02:00
committed by Thilo Graf
parent 8cd3b8bbf1
commit 20a06711b7
2 changed files with 4 additions and 4 deletions

View File

@@ -101,7 +101,7 @@ int CWebChannelsSetup::exec(CMenuTarget *parent, const std::string &actionKey)
{
std::string entry = dirname;
CKeyboardInput *e = new CKeyboardInput(LOCALE_WEBCHANNELS_XML_ENTER, &entry, 50);
CKeyboardInput *e = new CKeyboardInput(LOCALE_WEBCHANNELS_XML_ENTER, &entry, 255);
e->exec(this, "");
delete e;
@@ -162,7 +162,7 @@ int CWebChannelsSetup::exec(CMenuTarget *parent, const std::string &actionKey)
tpl += "?mode=tv";
std::string entry = tpl;
CKeyboardInput *e = new CKeyboardInput(LOCALE_WEBCHANNELS_XML_ENTER, &entry, 52);
CKeyboardInput *e = new CKeyboardInput(LOCALE_WEBCHANNELS_XML_ENTER, &entry, 255);
e->exec(this, "");
delete e;

View File

@@ -74,7 +74,7 @@ int CXMLTVSetup::exec(CMenuTarget *parent, const std::string &actionKey)
{
std::string entry = dirname;
CKeyboardInput *e = new CKeyboardInput(LOCALE_XMLTV_XML_ENTER, &entry, 50);
CKeyboardInput *e = new CKeyboardInput(LOCALE_XMLTV_XML_ENTER, &entry, 255);
e->exec(this, "");
delete e;
@@ -119,7 +119,7 @@ int CXMLTVSetup::exec(CMenuTarget *parent, const std::string &actionKey)
std::string tpl = "http://xxx.xxx.xxx.xxx/control/xmltv.xml";
std::string entry = tpl;
CKeyboardInput *e = new CKeyboardInput(LOCALE_XMLTV_XML_ENTER, &entry, 50);
CKeyboardInput *e = new CKeyboardInput(LOCALE_XMLTV_XML_ENTER, &entry, 255);
e->exec(this, "");
delete e;