From eca248c6884d9a1e85d05f7ef79670763f1579af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Zieli=C5=84ski?= Date: Fri, 3 Feb 2023 17:13:54 +0100 Subject: [PATCH] [MOS-35] Add more input modes for USSD reply Previously only the mode restricted to digits was available. --- module-apps/application-desktop/windows/MmiPullWindow.cpp | 2 +- pure_changelog.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/module-apps/application-desktop/windows/MmiPullWindow.cpp b/module-apps/application-desktop/windows/MmiPullWindow.cpp index ef5f5c6b63fe4dbdb700c7b7df47ffe581d810bc..cf05053ececf7ad13119537fd5053a5c6ee8be2e 100644 --- a/module-apps/application-desktop/windows/MmiPullWindow.cpp +++ b/module-apps/application-desktop/windows/MmiPullWindow.cpp @@ -56,7 +56,7 @@ MmiPullWindow::MmiPullWindow(app::ApplicationCommon *app, const std::string &nam style::desktop::inputWidget::h); InputBox->inputText->setInputMode(new InputMode( - {InputMode::digit}, + {InputMode::digit, InputMode::Abc, InputMode::ABC, InputMode::abc}, [=](const UTF8 &text1) { navBarTemporaryMode(text1); }, [=]() { navBarRestoreFromTemporaryMode(); }, [=]() { selectSpecialCharacter(); })); diff --git a/pure_changelog.md b/pure_changelog.md index ce822f2f92dcc557f49359d59631de4023e729b1..f74969d0f7267b426da8eb6286de1b33819b6a87 100644 --- a/pure_changelog.md +++ b/pure_changelog.md @@ -59,6 +59,7 @@ * Fixed improper asterisk button behavior when adding new contact * Fixed for contacts removed and imported from SIM card once again were added to database without names * Fixed (removed) redundant leading zero from time representation unless exactly midnight +* Fixed inability to type characters other than digits in USSD replies ## [1.5.0 2022-12-20]