Kangie/sddm-sugar-candy

Random S showing up just behind the login username

chrisjameschamp opened this issue · 4 comments

I have had this issue on multiple Arch distros and I cannot seem to figure out how to solve it. I did remove the Combobox from the Inputs.qml file and that resolved it, but ideally I would like to leave that there for quick changing of users. I have attached an image for reference

Occuring on Archlabs Linux x86_64 with Kernel 5.17.8-arch1-1

IMG_0307

Same - did you ever solve this?

Update for anyone looking in the future: this can be fixed by changing line 94 in Components/Input.qml. The horizontal margin defaults to a percentage of screen height:

anchors.leftMargin: selectUser.height * 0.125

Which presumably doesn't work for all resolutions. A margin of 0 didn't quite work for my display, but this looks perfect:

anchors.leftMargin: -7

Good luck!

Fwiw this is fixed in my updated fork 'eucalyptus drop' available here or published to various 'stores'.

I'll try and backport these fixes for anyone subscribed here once I have time, but this repo mostly exists so that I had easy tags for ebuild writing. :)

The solution is inserting a line below line 47 displayText: "" (if you leave the copyright stuff on the original place at the top).

ComboBox {
id: selectUser
width: parent.height

ComboBox {

    id: selectUser

    displayText: ""
    width: parent.height