QT Creator Color window not opening correctly!
-
Hi,
Since instally QT Creator I have been unable to use the fill colour window properly. It starts off screen and I cant drag it so I can see the whole window.
You can see in the picture to the far right I am trying to change the colour of a rectangle but when I click on it the colour window thing opens off screen and no matter what I try I cant get it to move.
I have tried:
Uninstall and re installing
removing the QTCreator.ini file and resetting the configs -
Hi,
Since instally QT Creator I have been unable to use the fill colour window properly. It starts off screen and I cant drag it so I can see the whole window.
You can see in the picture to the far right I am trying to change the colour of a rectangle but when I click on it the colour window thing opens off screen and no matter what I try I cant get it to move.
I have tried:
Uninstall and re installing
removing the QTCreator.ini file and resetting the configs -
Here is a workaround....
-
Find the ColorEditor.qml that belongs to QTCreator. There are a few. You can change the file name until the Color picker doesn't appear anymore in QtCreator.
-
Find the loader block in ColorEditor.qml and make sure it includes the anchor lines below. This will anchor the color picker to the left and not the right and off the screen -silliness; how does this even happen in QT land -
property Loader loader: Loader {
parent: colorEditor
active: colorEditor.supportGradient
anchors.left: parent.left
anchors.leftMargin: 0sourceComponent: ColorEditorPopup { id: cePopup x: cePopup.__defaultX y: cePopup.__defaultY } -
