Merge pull request #1910 from eneshecan/master
This commit is contained in:
commit
21abd4f9f9
|
@ -2,6 +2,7 @@
|
|||
*~
|
||||
vgcore.*
|
||||
/.vscode
|
||||
/.idea
|
||||
/.cache
|
||||
*.swp
|
||||
packagecache
|
||||
|
|
|
@ -49,9 +49,8 @@ auto Language::update() -> void {
|
|||
|
||||
void Language::onEvent(const std::string& ev) {
|
||||
std::lock_guard<std::mutex> lg(mutex_);
|
||||
auto layoutName = ev.substr(ev.find_last_of(',') + 1);
|
||||
auto kbName = ev.substr(0, ev.find_last_of(','));
|
||||
kbName = kbName.substr(kbName.find_first_of('>') + 2);
|
||||
auto kbName = ev.substr(ev.find_last_of('>') + 1, ev.find_first_of(','));
|
||||
auto layoutName = ev.substr(ev.find_first_of(',') + 1);
|
||||
|
||||
if (config_.isMember("keyboard-name") && kbName != config_["keyboard-name"].asString())
|
||||
return; // ignore
|
||||
|
|
Loading…
Reference in New Issue