summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/am/applets/software_keyboard.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/software_keyboard.cpp b/src/core/hle/service/am/applets/software_keyboard.cpp
index 981bdec51..40984ffa9 100644
--- a/src/core/hle/service/am/applets/software_keyboard.cpp
+++ b/src/core/hle/service/am/applets/software_keyboard.cpp
@@ -38,7 +38,12 @@ static Core::Frontend::SoftwareKeyboardParameters ConvertToFrontendParameters(
38 return params; 38 return params;
39} 39}
40 40
41SoftwareKeyboard::SoftwareKeyboard() = default; 41SoftwareKeyboard::SoftwareKeyboard() {
42 // Some applets require this to be signalled on applet creation, some do not. Internally, this
43 // is done by a flag in the applet module, but for simplicity SoftwareKeyboard is one of the
44 // applets with this flag.
45 broker.SignalStateChanged();
46}
42 47
43SoftwareKeyboard::~SoftwareKeyboard() = default; 48SoftwareKeyboard::~SoftwareKeyboard() = default;
44 49