Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Freeze in activites view on GNOME 41 #1249

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/extension.ts
Expand Up @@ -2640,7 +2640,7 @@ let default_getcaption_workspace: any;
*/
function _show_skip_taskbar_windows(ext: Ext) {
let cfg = ext.conf;
if (!GNOME_VERSION?.startsWith("40.")) {
if (!GNOME_VERSION?.startsWith("4")) {
// TODO GNOME 40 added a call to windowtracker and app var is not checked if null
// in WindowPreview._init(). Then new WindowPreview() is being called on
// _addWindowClone() of workspace.js.
Expand Down Expand Up @@ -2812,7 +2812,7 @@ function _show_skip_taskbar_windows(ext: Ext) {
*
*/
function _hide_skip_taskbar_windows() {
if (!GNOME_VERSION?.startsWith("40.")) {
if (!GNOME_VERSION?.startsWith("4")) {
if (default_isoverviewwindow_ws)
Workspace.prototype._isOverviewWindow = default_isoverviewwindow_ws;
}
Expand Down