-
Notifications
You must be signed in to change notification settings - Fork 12
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
After Rebooting the Webslice is blank #41
Comments
I can confirm this bug. |
I've got a fix, but sadly this project looks dead. So I think I'm forking the whole thing, joy? |
Alright, the fork is up: https://www.pling.com/p/2117779/ If you could test it and make sure that it works for you, it would be very much appreciated. |
The project is dead because I'm still on Kubuntu 20.04 and can't test anything. And can't release anything I haven't tested, obviously. So yeah, I welcome the fork, and appreciate the shoutout on Pling. And thanks for the work and appreciating (part of) mine :) |
Rather understood on being stuck on 20.04. And done on the link. :) If you were interested, I wouldn't mind the idea of a shared project of some sort, so if/when our situations are reversed stuff still gets updated, and bug fixes don't get lost. |
I totally agree. Also, I can't accept removing a feature to fix a bug. Most, if not all of the features were implemented because I use them, or because someone asked for them. Beyond that, feel free to redo everything if needed. As I said, most of it are kludges, using sometimes undocumented features of Plasma 5 (at least, at the time). Anyway, have fun :) |
Towards the end of ripping out the feature, I made some progress on figuring out why things sometimes broke, but I'm not nearly as confident in that as I'd like to be. I did definitely notice that there were things going on that I couldn't find in any of the documentation. :) |
I really really really hope this gets ported to KDE 6. :) Glad to see some progress!!!! |
Ok I finally fixed this bug in the trunk of this repo. The issue was the default size set. width: (displaySiteBehaviour) ? 0 : webPopupWidth
height: (displaySiteBehaviour) ? 0 : webPopupHeight and now it's width: (displaySiteBehaviour) ? parent.width : webPopupWidth
height: (displaySiteBehaviour) ? parent.height : webPopupHeight So, the size was set to 0:0. Now, it fills the parent, which, hopefully is the plasmoid. |
Hello Cqoicebordel, |
I've got a webslice that displays a Google Sheet.
eg like this (Note this is just an example and not a real link)
https://docs.google.com/spreadsheets/d/24824wriuweiuryw23425258223852/pubhtml/sheet?headers=false&gid=2012374755&range=A1:A7
This works great. The sheet is displayed and refreshes correctly.
However, whenever I reboot the webslice is blank/empty.
If I edit it, put another link in eg https://bbc.co.uk and click Apply the webslice displays the BBC site, If i then put back my link it works.
Why is it not displaying correctly after a reboot?
The text was updated successfully, but these errors were encountered: