mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Fix wrong layout name in hyprland language module when a variant is used
This commit is contained in:
parent
bfbb2f9a40
commit
f724cc3f9d
1
.gitignore
vendored
1
.gitignore
vendored
@ -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
Block a user