-
Notifications
You must be signed in to change notification settings - Fork 219
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: Set toogle button value before connecting it to its slot #1536
Conversation
Just one line modified. Mhm... |
The same class of problem may still exist for other edge cases unless *all actions are connected at the end of the constructor ( Lines 129 to 131 in ddd142b
We should do some more checks or code reviews here.
I really prefer to not manipulate a published Git history so I would go for 1.4.1. I can do this since it I am a release prepration Pro now 😉 |
@buhtz THX for investigating and fixing this! I could reproduce the problem too now. I will prepare a new minor release Sunday EOD (unless other urgent fixes pop up). |
Ah, the |
@buhtz FYI: I think we should keep this PR now as it is (no more commits) since it has an impact on the AUR package's checksum (the patch includes new commits): |
OK. But just for my learning. I don't understand why it has an effect on the AUR because the it should refer to the latest release. So much to learn ... 🤣 |
The patch in the AUR package references the github PR so the diff changes when we add commits: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=backintime#n14 |
This might fix #1535 .
Problem was that the value/state of the button "Show hidden files" was set after it was connected to its slot. This happened before the main window construction was finished. But it triggered some other events in the main window that couldn't be processed correct because that window itself is not finished with its construction.
Solution: Set the value of that button first and then connect it to its slot.