Merge pull request #1987 from adamant-pwn/patch-2
This commit is contained in:
commit
c93811b158
|
@ -49,7 +49,7 @@ auto Language::update() -> void {
|
||||||
|
|
||||||
void Language::onEvent(const std::string& ev) {
|
void Language::onEvent(const std::string& ev) {
|
||||||
std::lock_guard<std::mutex> lg(mutex_);
|
std::lock_guard<std::mutex> lg(mutex_);
|
||||||
auto kbName = ev.substr(ev.find_last_of('>') + 1, ev.find_first_of(','));
|
std::string kbName(begin(ev) + ev.find_last_of('>') + 1, begin(ev) + ev.find_first_of(','));
|
||||||
auto layoutName = ev.substr(ev.find_first_of(',') + 1);
|
auto layoutName = ev.substr(ev.find_first_of(',') + 1);
|
||||||
|
|
||||||
if (config_.isMember("keyboard-name") && kbName != config_["keyboard-name"].asString())
|
if (config_.isMember("keyboard-name") && kbName != config_["keyboard-name"].asString())
|
||||||
|
|
Loading…
Reference in New Issue