Hi my progress bar looks really bad at the beggining bad and idk why if someone can help me
progress_bar = QProgressBar()
progress_bar.setValue(0)
progress_bar.setFixedHeight(20)
progress_bar.setStyleSheet("""
QProgressBar {
background-color: #2c2c3c;
border: none;
border-radius: 10px; /* Coins arrondis /
text-align: center;
color: #ffffff;
font-size: 14px;
}
QProgressBar::chunk {
background-color: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #7b1fa2, stop:1 #8e24aa);
border-radius: 10px; / Coins arrondis pour le remplissage /
margin: 0px; / Supprime les marges */
}
""")
progress_layout.addWidget(progress_bar)