Bug 1820405 - Ignore bogus enter-leave by default in lg3d/qtile. r=stransky

Differential Revision: https://phabricator.services.mozilla.com/D172656
This commit is contained in:
Emilio Cobos Álvarez 2023-03-16 14:49:08 +00:00
Родитель a0d0769186
Коммит 6c885e916b
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -4237,6 +4237,7 @@ static bool IsBogusLeaveNotifyEvent(GdkWindow* aWindow,
const auto& desktopEnv = GetDesktopEnvironmentIdentifier(); const auto& desktopEnv = GetDesktopEnvironmentIdentifier();
return desktopEnv.EqualsLiteral("fluxbox") || // Bug 1805939 comment 0. return desktopEnv.EqualsLiteral("fluxbox") || // Bug 1805939 comment 0.
desktopEnv.EqualsLiteral("blackbox") || // Bug 1805939 comment 32. desktopEnv.EqualsLiteral("blackbox") || // Bug 1805939 comment 32.
desktopEnv.EqualsLiteral("lg3d") || // Bug 1820405.
StringBeginsWith(desktopEnv, "fvwm"_ns); StringBeginsWith(desktopEnv, "fvwm"_ns);
}(); }();