summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-11-23 02:51:53 +0100
committerZach Hilman <zachhilman@gmail.com>2018-12-03 23:26:26 +0100
commit877b31b33e63c8a9df2649daedfb26a24d2e4515 (patch)
tree913c16c3a77004dbdb8e7f8c86d2329ba04f2627 /src/core/hle/service/am
parentMerge pull request #1842 from lioncash/slot (diff)
downloadyuzu-877b31b33e63c8a9df2649daedfb26a24d2e4515.tar
yuzu-877b31b33e63c8a9df2649daedfb26a24d2e4515.tar.gz
yuzu-877b31b33e63c8a9df2649daedfb26a24d2e4515.tar.bz2
yuzu-877b31b33e63c8a9df2649daedfb26a24d2e4515.tar.lz
yuzu-877b31b33e63c8a9df2649daedfb26a24d2e4515.tar.xz
yuzu-877b31b33e63c8a9df2649daedfb26a24d2e4515.tar.zst
yuzu-877b31b33e63c8a9df2649daedfb26a24d2e4515.zip
Diffstat (limited to 'src/core/hle/service/am')
-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(
return params;
}
-SoftwareKeyboard::SoftwareKeyboard() = default;
+SoftwareKeyboard::SoftwareKeyboard() {
+ // Some applets require this to be signalled on applet creation, some do not. Internally, this
+ // is done by a flag in the applet module, but for simplicity SoftwareKeyboard is one of the
+ // applets with this flag.
+ broker.SignalStateChanged();
+}
SoftwareKeyboard::~SoftwareKeyboard() = default;