-
Notifications
You must be signed in to change notification settings - Fork 57
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
打开微信窗口时, 任务栏图标异常激活 #201
Comments
情况相同,3.5.0.46三次打包只有第一次打包没有异常激活状态。 附上系统版本参数: OS: Manjaro 21.2.3 Qonos |
遇到了同样的问题。 |
没办法解决的么 |
KDE 中,如果微信窗口最大化则没有这个问题。如果微信窗口不是最大化,那么只有将窗口最小化时会取消任务栏图标高亮。在有解决方案之前可以尝试将微信窗口最大化使用 :| |
如果不要求使用较新版本微信的话,推荐使用 AUR 包 |
其实本包的 3.5.0.46-1 版本也没有这个问题。主要 3.2 版本的微信没有自动登录功能,还是不太方便。 |
var fixWechat = function() {
var clients = workspace.clientList();
for (var i=0; i<clients.length; i++) {
if (clients[i].caption.indexOf("WeChat") == 0 && clients[i].desktop != workspace.currentDesktop) {
// minimize wechat if it's not on current desktop
// https://github.com/vufa/deepin-wine-wechat-arch/issues/201#issuecomment-1188833005
clients[i].minimized = true;
}
}
};
workspace.currentDesktopChanged.connect(fixWechat); 可以添加这个kwinscript来自动把微信最小化以取消其高亮 |
Manjaro KED 中, 只要微信窗口处于前台, 任务栏图标则一直是激活状态, 无论是否有新消息.
从
deepin-wine-wechat-3.5.0.46-3
降级到deepin-wine-wechat-3.5.0.46-1
可行The text was updated successfully, but these errors were encountered: