From 471c30c69625c5b9ab77bf9c08e33075f51ea33f Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 12 Oct 2021 23:04:56 +0200 Subject: [PATCH] webchannels/xmltv-setup: extend keyboard input Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/56023a5dcb0c7339aff86b0a8a44e92cc4031ab3 Author: vanhofen Date: 2021-10-12 (Tue, 12 Oct 2021) Origin message was: ------------------ - webchannels/xmltv-setup: extend keyboard input ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/webchannels_setup.cpp | 4 ++-- src/gui/xmltv_setup.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/webchannels_setup.cpp b/src/gui/webchannels_setup.cpp index 4dce2e073..a5f0d0661 100644 --- a/src/gui/webchannels_setup.cpp +++ b/src/gui/webchannels_setup.cpp @@ -100,7 +100,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; @@ -161,7 +161,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; diff --git a/src/gui/xmltv_setup.cpp b/src/gui/xmltv_setup.cpp index 50ef142b2..4d48dfe10 100644 --- a/src/gui/xmltv_setup.cpp +++ b/src/gui/xmltv_setup.cpp @@ -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;