Code Monkey home page Code Monkey logo

Comments (2)

3ximus avatar 3ximus commented on September 28, 2024

I think you need to remove this section here

aerial-sddm-theme/Main.qml

Lines 210 to 268 in 06beb74

Rectangle {
id: login_container
//y: parent.height * 0.8
y: clock.y + clock.height + 30
width: clock.width
height: parent.height * 0.08
color: "transparent"
anchors.left: clock.left
Rectangle {
id: username_row
height: parent.height * 0.36
color: "transparent"
anchors.left: parent.left
anchors.leftMargin: 0
anchors.right: parent.right
anchors.rightMargin: 0
transformOrigin: Item.Center
anchors.margins: 10
Text {
id: username_label
width: parent.width * 0.27
height: parent.height * 0.66
horizontalAlignment: Text.AlignLeft
font.family: textFont.name
font.bold: true
font.pixelSize: 16
color: "white"
text: "Username"
anchors.verticalCenter: parent.verticalCenter
}
TextBox {
id: username_input_box
height: parent.height
text: userModel.lastUser
anchors.verticalCenter: parent.verticalCenter
anchors.left: username_label.right
anchors.leftMargin: config.usernameLeftMargin
anchors.right: parent.right
anchors.rightMargin: 0
font: textFont.name
color: "#25000000"
borderColor: "transparent"
textColor: "white"
Keys.onPressed: {
if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
sddm.login(username_input_box.text, password_input_box.text, session.index)
event.accepted = true
}
}
KeyNavigation.backtab: password_input_box
KeyNavigation.tab: password_input_box
}
}

And delete any references to the username_input_box on the file

from aerial-sddm-theme.

3ximus avatar 3ximus commented on September 28, 2024

No follow up ...

from aerial-sddm-theme.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.