mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
1,012 B
Diff
22 lines
1,012 B
Diff
|
diff -urN a/zlibrary/ui/src/qt4/tree/QtWaitingSpinner.cpp b/zlibrary/ui/src/qt4/tree/QtWaitingSpinner.cpp
|
||
|
--- a/zlibrary/ui/src/qt4/tree/QtWaitingSpinner.cpp 2012-11-30 05:41:25.000000000 -0700
|
||
|
+++ b/zlibrary/ui/src/qt4/tree/QtWaitingSpinner.cpp 2013-04-21 10:17:23.402543440 -0600
|
||
|
@@ -86,7 +86,7 @@
|
||
|
}
|
||
|
|
||
|
void QtWaitingSpinner::setRoundness(qreal roundness) {
|
||
|
- myRoundness = std::max(0.0, std::min(100.0, roundness));
|
||
|
+ myRoundness = std::max(0.0, std::min(100.0, (double)roundness));
|
||
|
}
|
||
|
|
||
|
void QtWaitingSpinner::setColor(QColor color) {
|
||
|
@@ -148,7 +148,7 @@
|
||
|
qreal alphaDiff = color.alphaF() - (qreal)minAlphaF;
|
||
|
qreal gradation = alphaDiff / (qreal)(distanceThreshold + 1);
|
||
|
qreal resultAlpha = color.alphaF() - gradation * distance;
|
||
|
- resultAlpha = std::min(1.0, std::max(0.0, resultAlpha)); //if alpha is out of bound, force it to bounds
|
||
|
+ resultAlpha = std::min(1.0, std::max(0.0, (double)resultAlpha)); //if alpha is out of bound, force it to bounds
|
||
|
color.setAlphaF(resultAlpha);
|
||
|
return color;
|
||
|
}
|