Conversation
…his is mostly work from ferdnyc and #4833. I've made a few additional changes (formatting, bug fixes)
|
Honestly? This doesn't sit right with me at all. Never mind the pointlessness of leaving review comments on my other PR, then closing it before I could even address them. That's actually beside the point. If you wanted to make changes to my commit, there are two different ways — no, wait, three different ways — you could do that without obliterating the attribution. (Proper git attribution, not a note in a commit message.)
Any of those would keep my ID attached to my changes. |
JacksonRG
left a comment
There was a problem hiding this comment.
One line looks like it's missing an enum class. Other than that, looks good.
| from PyQt5.QtGui import QPalette | ||
| p = QPalette() | ||
| p.setColor(QPalette.Highlight, Qt.green) | ||
| p.setColor(QPalette.Highlight, Qt.GlobalColor.green) |
There was a problem hiding this comment.
I saw other QPalette.Highlight replaced with QPalette.ColorRole.Highlight
@ferdnyc Please calm down, no need to get aggressive. Nobody is trying to steal your attribution. I am fine merging your previous PR, if you can pull my changes from this branch and fix all the issues with the original PR. I spent an hour trying to merge changes into your branch unsuccessfully (not to mention prioritized this work above my own), and thus, created this one as a last ditch effort to move this forward. So, you can criticize my lack of git skills, sure, but let's not be overly emotional and accusatory. Closing this one for now (waiting on changes to the original) |
Updating code base (especially Qt enums) to be compatible with Qt6. This is mostly work from @ferdnyc and PR #4833. I've made a few additional changes (formatting, bug fixes), but due to the older base of this PR (I think), I had trouble merging these changes back into the original PR.
Additional changes:
I also did a bunch of local testing with this branch, using Qt5, and did not see any breakages, errors, or stack traces.