Merge pull request #410 from PhenomRetroShare/Fix_SIGFPE_InQProgressBar_PrintEvent

Fix SIGFPE in QProgressBar::paintEvent
This commit is contained in:
Cyril Soler 2016-06-11 09:22:53 -04:00 committed by GitHub
commit afe23e7d90
2 changed files with 3 additions and 0 deletions

View File

@ -521,6 +521,7 @@ SubFileItem QProgressBar#progressBar::chunk {
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
border: 1px solid black;
width: 15px;
}
PluginItem QLabel#infoLabel {

View File

@ -27,9 +27,11 @@ QProgressBar:horizontal {
text-align: center;
padding: 1px;
background: #201F1F;
width: 15px;
}
QProgressBar::chunk:horizontal {
background-color: qlineargradient(spread:reflect, x1:1, y1:0.545, x2:1, y2:0, stop:0 rgba(28, 66, 111, 255), stop:1 rgba(37, 87, 146, 255));
width: 15px;
}
QFrame#titleBarFrame, QFrame#toolBarFrame